/* Image action buttons container */
.image-actions-container {

    /* Flex layout */
    display: flex;

    /* Gap */
    gap: 10px;

    /* Top margin */
    margin-top: 20px;

    /* Bottom margin */
    margin-bottom: 20px;
}

/* Action button styling */
.action-button {

    /* Full width */
    width: 100%;

    /* Padding */
    padding: 14px;

    /* Blue background */
    background: #2563eb;

    /* Remove border */
    border: none;

    /* Rounded corners */
    border-radius: 10px;

    /* White text */
    color: white;

    /* Pointer */
    cursor: pointer;

    /* Font size */
    font-size: 16px;
}

/* Hover effect */
.action-button:hover {

    /* Dark blue */
    background: #1e40af;
}

/* Enhancement container */
.enhancement-container {

    /* Top spacing */
    margin-top: 30px;
}

/* Filter container */
.filter-container {

    /* Top spacing */
    margin-top: 30px;
}

/* Hashtag section */
.hashtag-container {

    /* Top spacing */
    margin-top: 30px;
}

/* Section titles */
.enhancement-container h2,
.filter-container h2,
.hashtag-container h2 {

    /* Bottom spacing */
    margin-bottom: 15px;

    /* Font size */
    font-size: 24px;
}