/* .container-fluid {
    padding: 20px;
} */

/* Button styling */
.section-buttons {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-buttons button {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.section-buttons button:hover {
    background-color: #5E5970;
    color: #ffffff;
}

.section-buttons button.active {
    background-color: #5E5970;
    color: #ffffff;
}


/* Responsive styling */
@media (max-width: 768px) {
    .section-buttons {
        flex-direction: row;
        overflow-x: auto;
    }

    .section-buttons button {
        flex: 1;
        margin-right: 10px;
        white-space: nowrap;
    }

    .section-buttons button:last-child {
        margin-right: 0;
    }
}

.hidden {
    visibility: hidden;
    width: 0;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-sections {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-sections {
        display: block !important;
    }

    .desktop-sections {
        display: none !important;
    }

    .section-buttons button {
        width: 100%;
        margin-right: 0 !important;
    }
}