/* AVŞA PMS v5.4 KESKİN OKUNABİLİRLİK STİLLERİ */
#sidebar { 
    min-width: 250px; 
    max-width: 250px; 
    background: #1a1d21 !important; /* Derin Antrasit */
    min-height: 100vh; 
}

#sidebar .nav-link { 
    color: rgba(255, 255, 255, 0.65) !important; /* Açık Gri/Beyazımsı Metin */
    padding: 12px 20px; 
    font-size: 14px; 
    display: flex; 
    align-items: center; 
    border-radius: 8px; 
    margin: 4px 12px;
    transition: all 0.2s;
}

#sidebar .nav-link:hover { 
    background: rgba(255, 255, 255, 0.08) !important; 
    color: #ffffff !important; 
}

#sidebar .nav-link.active { 
    background: #FF5722 !important; /* Avşa Turuncusu */
    color: #ffffff !important; 
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.35);
}

#sidebar .nav-link i { 
    font-size: 18px; 
    margin-right: 12px;
}

#sidebar .sidebar-brand h4 {
    letter-spacing: 1px;
}

#sidebar .text-muted {
    color: #6c757d !important; /* Grup başlıkları için belirgin gri */
    letter-spacing: 1.5px;
}
/* Easter Egg & Profesyonel Dokunuş */
.pms-footer { font-size: 10px; color: #adb5bd; letter-spacing: 1px; text-transform: uppercase; }
.quick-access-btn { position: fixed; bottom: 20px; right: 20px; width: 45px; height: 45px; background: #FF5722; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(255,87,34,0.4); cursor: pointer; z-index: 1000; transition: transform 0.3s; }
.quick-access-btn:hover { transform: scale(1.1) rotate(15deg); color: white; }
.btn-orange { background-color: #FF5722 !important; border: none; transition: 0.3s; }
.btn-orange:hover { background-color: #E64A19 !important; transform: translateY(-2px); }
.pulse-orange { animation: pulse-orange-animation 2s infinite; }
@keyframes pulse-orange-animation {
    0% { box-shadow: 0 0 0 0px rgba(255, 87, 34, 0.4); }
    100% { box-shadow: 0 0 0 15px rgba(255, 87, 34, 0); }
}
