/* ========================================
   NAVIGATION MENU STYLES
   ======================================== */

/* Bildirim Dropdown Styles */
.hover-bg-light:hover {
    background-color: rgba(0,0,0,0.05) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

#bildirimid {
    transition: all 0.3s ease;
}

#bildirimid:hover {
    transform: scale(1.1);
}

#bildirim-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Bildirim List Item Styles */
.list-group-item-action:hover {
    background-color: rgba(0,123,255,0.1) !important;
    transform: translateX(5px);
}

.list-group-item {
    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}

.list-group-item:last-child {
    border-bottom: none !important;
}

/* Bildirim Icon Container */
.bg-light.rounded-circle {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Bildirim Header */
.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

/* Custom Scrollbar for Bildirim Content */
#bildirimicerik::-webkit-scrollbar {
    width: 6px;
}

#bildirimicerik::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#bildirimicerik::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

#bildirimicerik::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.sticky-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.navbar-sticky {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-scrolled {
    background: rgba(255,255,255,0.98);
}

.navbar-hidden {
    transform: translateY(-100%);
}

/* Body padding to prevent content from hiding under sticky navbar - REMOVED */
/* body {
    padding-top: 0;
} */

/* Smooth transitions */
header, .sticky-navbar {
    transition: all 0.3s ease;
}

/* Navbar içeriği için ek stil */
.sticky-navbar .container {
    transition: all 0.3s ease;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #45B5AA, #0c4762);
    z-index: 1031;
    transition: width 0.3s ease;
}
