/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #dc3545;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
}

/* Notification Dropdown */
.notification-dropdown {
    width: 320px;
    padding: 0;
    max-height: 400px;
    overflow: hidden;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #f1f1f1;
}

.notification-body {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.notification-item.unread {
    background-color: #f0f7ff;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.notification-content {
    flex: 1;
}

.notification-text {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
}

.notification-time {
    margin: 0;
    font-size: 0.75rem;
    color: #6c757d;
}

.notification-footer {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #f1f1f1;
}

.notification-footer a {
    color: #0d6efd;
    text-decoration: none;
    font-size: 0.9rem;
}

.notification-empty {
    padding: 20px 0;
}

/* Toast Notifications */
.toast {
    background-color: white;
    border-left: 4px solid #0d6efd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.toast.claim {
    border-left-color: #ffc107;
}

.toast.message {
    border-left-color: #0d6efd;
}

.toast.post_update {
    border-left-color: #28a745;
}