/* Notification Styles */
.notification-indicator {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 8px;
    height: 8px;
    background-color: #FF5252;
    border-radius: 50%;
    display: none;
}

.notification-indicator.show {
    display: block;
}

.dropdown-menu {
    min-width: 280px;
    max-width: 350px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-menu .notification-header {
    background-color: var(--deep-teal);
    color: white;
    padding: 10px 15px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-menu .notification-body {
    max-height: 350px;
    overflow-y: auto;
}

.dropdown-item {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    white-space: normal;
}

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

.dropdown-item.unread {
    background-color: rgba(82, 171, 152, 0.1);
}

.dropdown-item .notification-time {
    font-size: 0.75rem;
    color: #6c757d;
    display: block;
    margin-top: 5px;
}

.dropdown-item .notification-content {
    margin-top: 5px;
    font-size: 0.9rem;
}

.dropdown-menu .notification-footer {
    padding: 10px 15px;
    text-align: center;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.notification-footer a {
    color: var(--deep-teal);
    text-decoration: none;
    font-size: 0.85rem;
}

.notification-footer a:hover {
    text-decoration: underline;
}

.credit-notification {
    display: flex;
    align-items: center;
}

.credit-notification i {
    color: #52ab98;
    margin-right: 10px;
    font-size: 1.2rem;
}

.notification-empty {
    padding: 20px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}