﻿.notification-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 8px;
    transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

    .notification-card:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .notification-card.unread {
        border-left: 4px solid #dc3545;
    }

.icon-container {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-right: 16px;
}

    .icon-container .dot {
        position: absolute;
        top: 4px;
        right: 4px;
        width: 10px;
        height: 10px;
        background: #dc2626;
        border: 2px solid white;
        border-radius: 50%;
    }

.content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.4;
}

.time {
    font-size: 0.9rem;
    color: #640bc9fc;
}

.body {
    margin-top: 6px;
    font-size: 0.95rem;
}

.ticket-title {
    margin-top: 4px;
    font-size: 0.85rem;
}