/* Notification Dropdown Styles */
.notification-dropdown {
    width: 350px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0.25rem;
}

.notification-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f1f1f1;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.notification-message, .notification-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.4;
}

.notification-time {
    font-size: 11px;
    color: #999;
    display: block;
    margin-top: 3px;
}

.unread, .unread-notification {
    background-color: #f0f7ff;
    border-left: 3px solid #007bff;
}

.unread:hover, .unread-notification:hover {
    background-color: #e6f2ff;
}

.notification-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
}

.notification-dropdown .dropdown-item {
    padding: 0;
    white-space: normal;
}

.notification-dropdown .dropdown-header {
    background-color: #f8f9fa;
    font-weight: 600;
    padding: 8px 15px;
    border-bottom: 1px solid #e9ecef;
}

/* Notification badge */
.notification-badge {
    position: absolute;
    top: 5px;
    right: 2px;
    font-size: 10px;
    padding: 2px 5px;
}

/* Bell icon container */
.notification-bell {
    position: relative;
}

/* Action buttons in notification dropdown */
.load-more-notifications,
.mark-all-read,
.notification-dropdown .dropdown-item:last-child {
    padding: 10px 15px !important;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #4a90e2;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.load-more-notifications:hover,
.mark-all-read:hover,
.notification-dropdown .dropdown-item:last-child:hover {
    background-color: #e9ecef;
    color: #2a70c2;
}

/* Notification dot for unread notifications */
.notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background-color: #ff3547;
    border-radius: 50%;
}
