/* 1. A KÜLSŐ KERET (A KÁRTYA) */
.bulletproof-sidebar-menu {
    font-family: 'Inter', sans-serif !important;
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important; /* Gin-stílusú szürke keret */
    border-radius: 8px !important;       /* Lekerekítés csak a széleken */
    overflow: hidden !important;          /* Hogy a belső elemek ne lógjanak ki a sarkokon */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    margin: 10px 0 !important;
}

/* 2. AZ ÉVEK (DETAILS) TISZTÍTÁSA */
.bulletproof-sidebar-menu details {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-bottom: 1px solid #e2e8f0 !important; /* Csak alul van választóvonal */
}

/* Az utolsó évnél már ne legyen elválasztó vonal alul */
.bulletproof-sidebar-menu details:last-child {
    border-bottom: none !important;
}

/* 3. AZ ÉVSZÁM SÁV (SUMMARY) */
.bulletproof-sidebar-menu summary {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1a1f24 !important;
    cursor: pointer;
    background-color: #ffffff !important;
    list-style: none !important;
    outline: none !important;
    transition: background-color 0.2s ease;
}

/* Hover effekt - finom szürkítés */
.bulletproof-sidebar-menu summary:hover {
    background-color: #f8fafc !important;
}

/* Nyitott állapotban az évszám sávja kapjon egy pici színt */
.bulletproof-sidebar-menu details[open] summary {
    background-color: #fcfdfe !important;
    color: #2275d7 !important; /* Gin kék vagy hagyd feketén */
}

/* 4. A NYÍL IKON (Gin stílusú) */
.bulletproof-sidebar-menu summary::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 4px;
}

.bulletproof-sidebar-menu details[open] summary::after {
    transform: rotate(-135deg);
    border-color: #2275d7;
}

/* 5. A LENYÍLÓ TARTALOM (LISTA) */
.bulletproof-sidebar-menu ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 5px 0 10px 0 !important; /* Kompaktabb padding */
    background-color: #fcfdfe !important;
    border-top: 1px solid #f1f5f9 !important; /* Finom belső elválasztó */
}

.bulletproof-sidebar-menu li a {
    display: block !important;
    padding: 8px 36px !important; /* Beljebb kezdődnek a linkek */
    text-decoration: none !important;
    color: #475569 !important;
    font-size: 14px !important;
    transition: all 0.2s ease;
}

.bulletproof-sidebar-menu li a:hover {
    background-color: #f1f5f9 !important;
    color: #1e293b !important;
}

/* Webböngésző saját markereinek teljes tiltása */
.bulletproof-sidebar-menu summary::-webkit-details-marker {
    display: none !important;
}