/* Notification Bell Styles */
.notification-bell {
    position: relative;
    display: inline-block;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: bold;
    line-height: 1;
    min-width: 1rem;
    text-align: center;
}

/* Notification Dropdown Styles */
.notification-dropdown {
    width: 350px;
    max-height: 400px;
    padding: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    background-color: #2c3034;
    color: #e9ecef;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 350px;
    overflow-y: auto;
}

.notification-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: default;
    transition: background-color 0.2s ease;
}

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

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

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

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

.notification-icon {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    padding-top: 0.2rem;
}

.notification-message {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    word-break: break-word;
}

.notification-time {
    color: #adb5bd;
    font-size: 0.8rem;
}

.empty-notifications {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    color: #adb5bd;
}

.action-buttons {
    display: flex;
    align-items: flex-start;
    margin-left: 0.5rem;
}

.action-buttons button {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    margin-left: 0.25rem;
    background-color: transparent;
}

.action-buttons button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mark-read-btn {
    color: #28a745;
}

.delete-notification-btn {
    color: #dc3545;
}

/* Notification icon colors */
.notification-icon-info {
    color: #0dcaf0;
}

.notification-icon-success {
    color: #198754;
}

.notification-icon-warning {
    color: #ffc107;
}

.notification-icon-error {
    color: #dc3545;
}

/* Custom scrollbar for notification list */
.notification-list::-webkit-scrollbar {
    width: 6px;
}

.notification-list::-webkit-scrollbar-track {
    background: #343a40;
}

.notification-list::-webkit-scrollbar-thumb {
    background-color: #495057;
    border-radius: 3px;
}

.notification-list::-webkit-scrollbar-thumb:hover {
    background-color: #6c757d;
}