/* © 2025 VEX LLC. All rights reserved. */
/* ===================================================================
   NPS.CSS - NPS Survey Styles, Post Consultation Rating
   =================================================================== */

        /* ═══════════════════════════════════════════════════════════════════
           NPS RATING PAGE - POST CONSULTATION
           ═══════════════════════════════════════════════════════════════════ */

        .nps-page {
            min-height: 100vh;
            padding: 0;
            background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
        }

        .nps-header {
            background: linear-gradient(135deg, #4B7BF5 0%, #6366F1 100%);
            padding: 40px 24px 48px;
            text-align: center;
            color: white;
            border-radius: 0 0 32px 32px;
            margin-bottom: -24px;
            position: relative;
        }

        .nps-header-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.2);
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            animation: scaleIn 0.5s ease;
        }

        .nps-header-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .nps-header-subtitle {
            font-size: 14px;
            opacity: 0.9;
        }

        .nps-vet-card {
            background: white;
            border-radius: 16px;
            padding: 16px 20px;
            margin: 0 16px 24px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: relative;
            z-index: 1;
        }

        .nps-vet-avatar {
            width: 56px;
            height: 56px;
            background: var(--primary-light);
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }

        .nps-vet-info {
            flex: 1;
        }

        .nps-vet-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
        }

        .nps-vet-specialty {
            font-size: 13px;
            color: var(--text-light);
        }

        .nps-duration {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            background: var(--primary-light);
            padding: 8px 12px;
            border-radius: 20px;
        }

        .nps-question {
            padding: 0 24px;
            margin-bottom: 24px;
        }

        .nps-question h2 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            text-align: center;
            line-height: 1.5;
        }

        .nps-scale {
            display: flex;
            justify-content: center;
            gap: 6px;
            padding: 0 16px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }

        .nps-score {
            width: 40px;
            height: 48px;
            border: 2px solid var(--border);
            border-radius: 12px;
            background: white;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            transition: all 0.2s;
        }

        .nps-score:hover {
            transform: translateY(-2px);
        }

        .nps-score.selected {
            transform: scale(1.1);
            border-width: 3px;
        }

        .nps-score.detractor.selected {
            background: #FEE2E2;
            border-color: #EF4444;
            color: #DC2626;
        }

        .nps-score.passive.selected {
            background: #FEF3C7;
            border-color: #F59E0B;
            color: #D97706;
        }

        .nps-score.promoter.selected {
            background: #D1FAE5;
            border-color: #10B981;
            color: #059669;
        }

        .nps-scale-labels {
            display: flex;
            justify-content: space-between;
            padding: 0 24px;
            margin-bottom: 32px;
            font-size: 12px;
            color: var(--text-light);
        }

        .nps-feedback-section {
            padding: 24px;
            background: white;
            border-radius: 24px 24px 0 0;
            margin-top: 16px;
            animation: slideUp 0.3s ease;
        }

        .nps-feedback-section h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 16px;
            text-align: center;
        }

        .nps-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .nps-tag {
            padding: 10px 16px;
            border: 1px solid var(--border);
            border-radius: 20px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s;
            color: var(--text);
            background: white;
        }

        .nps-tag:hover {
            border-color: var(--primary);
        }

        .nps-tag.selected {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .nps-comment {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--border);
            border-radius: 12px;
            font-size: 14px;
            font-family: inherit;
            resize: none;
            min-height: 80px;
            margin-bottom: 16px;
        }

        .nps-comment:focus {
            outline: none;
            border-color: var(--primary);
        }

        .nps-actions {
            padding: 16px 24px 32px;
            background: white;
        }

        .nps-submit {
            width: 100%;
            margin-bottom: 12px;
        }

        .nps-submit:disabled {
            background: #E0E0E0;
            box-shadow: none;
            cursor: not-allowed;
        }

        .nps-skip {
            width: 100%;
            background: transparent;
            border: none;
            color: var(--text-light);
            font-size: 14px;
            cursor: pointer;
            padding: 12px;
        }

        .nps-skip:hover {
            color: var(--text);
        }

        /* Thank You Modal */
        .thank-you-modal {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            z-index: 10002;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .thank-you-modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .thank-you-content {
            background: white;
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            max-width: 360px;
            width: 100%;
            animation: scaleIn 0.4s ease;
        }

        .thank-you-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            margin: 0 auto 24px;
            animation: bounceIn 0.6s ease;
        }

        @keyframes bounceIn {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .thank-you-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }

        .thank-you-message {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .thank-you-emoji {
            font-size: 32px;
            margin-bottom: 8px;
        }
