/* notifications.css */

.mark-read {
    font-size: 13px;
    color: var(--primary-yellow);
    cursor: pointer;
    font-weight: 500;
}

.mark-read:hover {
    text-decoration: underline;
}

.notifications-list {
    display: flex;
    flex-direction: column;
}

.notification-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.notification-item.unread {
    background: #fafafa;
    border-radius: 8px;
    padding: 20px;
    margin: 0 -20px;
    border-bottom: none;
    margin-bottom: 10px;
}

.notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 16px;
}

.notif-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.notif-promo {
    background: #fff8e1;
    color: #f57f17;
}

.notif-info {
    background: #e3f2fd;
    color: #1565c0;
}

.notif-warning {
    background: #ffebee;
    color: #c62828;
}

.notif-content {
    flex: 1;
}

.notif-content h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.notif-content p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.4;
}

.notif-time {
    font-size: 12px;
    color: var(--text-light);
}
