﻿/* Accordion styles */
.accordion-section {
    margin-bottom: 1rem;
}

.accordion-header {
    background-color: #6c757d; 
    border: none;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .accordion-header.active {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

.accordion-title {
    margin: 0;
    font-size: 1.25rem; 
    font-weight: 500;
    color: #ffffff; 
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1); 
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    border: 1px solid #dee2e6;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 1rem;
    background-color: #fff;
    display: none;
}

    .accordion-content.show {
        display: block;
    }
