/* ========================================
   Notification Badge Styles
   ======================================== */

/* Bell Icon Styling */
#notificationsDropdown {
    position: relative;
    padding: 0.5rem;
}

#notificationsDropdown i.fa-bell {
    font-size: 1.2rem;
    color: inherit;
}

/* Notification Badge (Red Circle) */
.notification-badge {
    min-width: 18px;
    height: 18px;
    padding: 0.25rem 0.4rem;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    border-radius: 10px;
    z-index: 1;
}

/* Count Text Badge in Dropdown Header */
.notification-count-text {
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
    font-weight: 600;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 0.6s ease-in-out;
}

/* Notification Icon in List */
.notification-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Notification Item */
.notification-item {
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
}

.notification-item:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

.notification-item:last-child {
    border-bottom: none !important;
}

/* Scrollbar Styling */
.notifications-list::-webkit-scrollbar {
    width: 6px;
}

.notifications-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notifications-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.notifications-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Dropdown Styling */
.dropdown-header-custom {
    background-color: #f8f9fa;
}

.notifications-menu {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-footer {
    background-color: #f8f9fa;
}
