/* support-index — styles page (migration DA, ne pas dupliquer la coque) */

.ticket-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

        .ticket-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .status-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        .status-ouvert { background: #10b981; color: white; }
        .status-en_attente { background: #f59e0b; color: white; }
        .status-fermé { background: #6b7280; color: white; }
        .status-résolu { background: #3b82f6; color: white; }

        .priority-badge {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
            margin-left: 8px;
        }

        .priority-faible { background: #6b7280; color: white; }
        .priority-normal { background: #3b82f6; color: white; }
        .priority-élevé { background: #f59e0b; color: white; }
        .priority-urgent { background: #ef4444; color: white; }

        .notification-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ef4444;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
        }
