:root {

            --primary: #0d9488; /* Turquesa Cirúrgico Claro */

            --primary-hover: #0f766e;

            --bg-color: #f8fafc; /* Slate Suave / White Clínico */

            --surface: rgba(255, 255, 255, 0.8); /* Vidro Branco Translúcido Premium */

            --surface-card: #ffffff; /* Fundo Branco Puro para Cards */

            --text-main: #0f172a; /* Slate Escuro */

            --text-muted: #475569; /* Cinza Escuro Suave */

            --border-color: rgba(0, 0, 0, 0.08);

            --radius-md: 12px;

            --radius-lg: 20px;

            --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);

            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);

            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);

        }

        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

        body { 

            background-color: var(--bg-color); 

            background-image: 

                radial-gradient(circle at 10% 20%, rgba(20, 184, 166, 0.05) 0%, transparent 50%), 

                radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 50%),

                radial-gradient(circle at 50% 50%, #f1f5f9 0%, #f8fafc 100%);

            color: var(--text-main); 

            display: flex; 

            justify-content: center; 

            padding: 20px 1%; 

            min-height: 100vh;

        }

        .container { 

            background: var(--surface); 

            backdrop-filter: blur(20px);

            -webkit-backdrop-filter: blur(20px);

            padding: 30px; 

            border-radius: var(--radius-lg); 

            box-shadow: var(--shadow-lg); 

            max-width: 98%; 

            width: 98%; 

            display: flex; 

            flex-direction: column; 

            gap: 28px; 

            border: 1px solid rgba(0,0,0,0.06);

            position: relative;

            overflow: hidden;

            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

        }

        .clinical-workbench {

            display: flex;

            gap: 32px;

            width: 100%;

        }

        .workbench-left {

            flex: 4.5;

            min-width: 320px;

            display: flex;

            flex-direction: column;

            gap: 24px;

        }

        .workbench-right {

            flex: 5.5;

            min-width: 320px;

            display: flex;

            flex-direction: column;

            gap: 24px;

        }

        .ai-placeholder {

            background: rgba(255, 255, 255, 0.6);

            border: 1px dashed rgba(20, 184, 166, 0.4);

            border-radius: var(--radius-md);

            padding: 40px;

            text-align: center;

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: center;

            gap: 16px;

            color: var(--text-muted);

            min-height: 400px;

            transition: all 0.3s;

        }

        .ai-placeholder-icon {

            font-size: 48px;

            animation: floatSlow 4s ease-in-out infinite;

        }

        @keyframes floatSlow {

            0%, 100% { transform: translateY(0); }

            50% { transform: translateY(-8px); }

        }

        @media (max-width: 1200px) {

            .clinical-workbench {

                flex-direction: column;

                gap: 24px;

            }

            .container {

                max-width: 950px;

                width: 100%;

            }

        }

        .container::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            height: 3px;

            background: linear-gradient(90deg, #14b8a6, #8b5cf6, #14b8a6);

            background-size: 200% auto;

            animation: flowGlow 6s linear infinite;

        }

        @keyframes flowGlow {

            0% { background-position: 0% 50%; }

            50% { background-position: 100% 50%; }

            100% { background-position: 0% 50%; }

        }

        h1 { 

            font-size: 24px; 

            font-weight: 800;

            color: var(--text-main); 

            display: flex; 

            align-items: center; 

            gap: 12px; 

            letter-spacing: -0.5px;

        }

        h1 span {

            filter: drop-shadow(0 2px 8px rgba(20, 184, 166, 0.4));

        }

        label { 

            font-size: 11px; 

            font-weight: 800; 

            color: var(--text-muted); 

            display: block; 

            margin-bottom: 10px; 

            text-transform: uppercase; 

            letter-spacing: 1.5px; 

        }

        .dropzone { 

            background: rgba(255, 255, 255, 0.7); 

            border: 1px solid rgba(20, 184, 166, 0.25); 

            border-radius: var(--radius-md); 

            padding: 24px; 

            text-align: left; 

            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            box-shadow: inset 0 1px 3px rgba(0,0,0,0.03);

            position: relative;

        }

        .dropzone:focus-within { 

            background: rgba(255, 255, 255, 0.95); 

            border-color: var(--primary); 

            box-shadow: 0 0 16px rgba(20, 184, 166, 0.1), inset 0 1px 3px rgba(0,0,0,0.03);

        }

        .dropzone-minor {

            background: rgba(139, 92, 246, 0.03) !important;

            border-color: rgba(139, 92, 246, 0.25) !important;

        }

        .dropzone-minor:focus-within {

            border-color: #8b5cf6 !important;

            box-shadow: 0 0 16px rgba(139, 92, 246, 0.1), inset 0 1px 3px rgba(0,0,0,0.03) !important;

        }

        .dropzone-history {

            background: rgba(217, 119, 6, 0.02) !important;

            border-color: rgba(245, 158, 11, 0.25) !important;

        }

        .dropzone-history:focus-within {

            border-color: #f59e0b !important;

            box-shadow: 0 0 16px rgba(245, 158, 11, 0.1), inset 0 1px 3px rgba(0,0,0,0.03) !important;

        }

        textarea { 

            width: 100%; 

            min-height: 200px; 

            padding: 16px; 

            border: 1px solid rgba(0,0,0,0.08); 

            border-radius: 8px; 

            font-size: 14px; 

            resize: vertical; 

            background: rgba(255, 255, 255, 0.85); 

            line-height: 1.6; 

            color: var(--text-main); 

            transition: all 0.3s;

            box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);

            font-family: inherit;

        }

        textarea:focus { 

            outline: none; 

            border-color: var(--primary); 

            box-shadow: 0 0 8px rgba(20, 184, 166, 0.15); 

            background: rgba(255, 255, 255, 1);

        }

        /* Placeholder para contenteditable */
        [contenteditable="true"]:empty:before {
            content: attr(placeholder);
            color: #94a3b8;
            pointer-events: none;
            display: block;
        }

        .editor-btn:hover {
            border-color: #94a3b8 !important;
            background: #f1f5f9 !important;
            transform: translateY(-0.5px);
        }

        .preview-wrapper { 

            background: var(--surface-card); 

            border: 1px solid var(--border-color); 

            border-radius: 10px; 

            padding: 24px; 

            min-height: 80px; 

            box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);

            transition: all 0.3s;

        }

        .preview { 

            font-family: Arial, sans-serif; 

            font-size: 10pt; 

            line-height: 1.6; 

            word-break: break-word; 

            color: var(--text-main); 

        }

        .btn { 

            background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%); 

            color: white; 

            border: none; 

            padding: 16px; 

            font-size: 15px; 

            font-weight: 700; 

            border-radius: 10px; 

            cursor: pointer; 

            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

            text-align: center; 

            display: flex; 

            justify-content: center; 

            align-items: center; 

            gap: 10px; 

            box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);

        }

        .btn:hover { 

            background: linear-gradient(135deg, #18e0cb 0%, var(--primary) 100%); 

            box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);

            transform: translateY(-1.5px);

        }

        .btn:active { 

            transform: translateY(1px) scale(0.99); 

            box-shadow: 0 2px 6px rgba(20, 184, 166, 0.2);

        }

        /* Fluxograma AVC & Sepse */

        .flow-container { display: flex; flex-direction: column; align-items: center; gap: 0; font-size: 13px; }

        .flow-box { padding: 12px 18px; border-radius: 8px; text-align: center; max-width: 320px; font-weight: 600; box-shadow: var(--shadow-sm); }

        .flow-start { background: #2563eb; color: white; border: 1px solid rgba(255,255,255,0.15); }

        .flow-action { background: #1e293b; color: #93c5fd; border: 2px solid #3b82f6; }

        .flow-decision { background: #78350f; color: #fde68a; border: 2px solid #d97706; }

        .flow-critical { background: #7f1d1d; color: #fca5a5; border: 2px solid #ef4444; font-weight: 700; }

        .flow-success { background: #064e3b; color: #a7f3d0; border: 2px solid #10b981; }

        .flow-end { background: #334155; color: #cbd5e1; border: 2px solid #64748b; }

        .flow-arrow { font-size: 20px; color: #64748b; line-height: 1; padding: 4px 0; font-weight: 900; }

        .flow-label { font-size: 11px; color: #94a3b8; font-weight: normal; }

        .flow-row { display: flex; gap: 15px; align-items: flex-start; justify-content: center; flex-wrap: wrap; }

        .flow-branch { display: flex; flex-direction: column; align-items: center; gap: 0; }

        

        /* Tooltips de Siglas */

        .sigla-tip { position: relative; cursor: pointer; border-bottom: 1.5px dotted var(--primary); color: inherit; font-weight: inherit; }

        .sigla-tip:hover { border-bottom-color: #ef4444; color: #fff; }

        #sigla-float { display: none; position: fixed; background: #ffffff; color: #0f172a; padding: 12px 18px; border-radius: 8px; font-size: 12px; font-weight: 500; z-index: 9999; box-shadow: 0 10px 25px rgba(0,0,0,0.08); max-width: 340px; text-align: center; line-height: 1.6; animation: siglaFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none; border: 1px solid rgba(0,0,0,0.08); }

        #sigla-float::before { content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-bottom-color: #ffffff; }

        @keyframes siglaFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }



        #eval-plans-old:focus {

            border-color: #f59e0b !important;

            box-shadow: 0 0 12px rgba(245, 158, 11, 0.15) !important;

            background: rgba(255, 255, 255, 1) !important;

        }

        #eval-plans-new:focus {

            border-color: var(--primary) !important;

            box-shadow: 0 0 12px rgba(20, 184, 166, 0.15) !important;

            background: rgba(255, 255, 255, 1) !important;

        }

        #btn-copy-old-plans:hover {

            background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.25) 100%) !important;

            border-color: #f59e0b !important;

            transform: translateY(-1px);

        }

        #btn-copy-new-plans:hover {

            background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(13, 148, 136, 0.25) 100%) !important;

            border-color: var(--primary) !important;

            transform: translateY(-1px);

        }



        /* Password Gate Styling */

        #password-gate {

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);

            z-index: 100000;

            display: flex;

            align-items: center;

            justify-content: center;

            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);

        }

        #password-gate.hidden {

            opacity: 0;

            transform: scale(1.08);

            pointer-events: none;

        }

        .gate-card {

            background: rgba(255, 255, 255, 0.8);

            border: 1px solid rgba(0, 0, 0, 0.06);

            backdrop-filter: blur(30px);

            -webkit-backdrop-filter: blur(30px);

            padding: 48px;

            border-radius: var(--radius-lg);

            width: 90%;

            max-width: 440px;

            box-shadow: 0 20px 40px rgba(0,0,0,0.06);

            text-align: center;

            color: #0f172a;

            animation: gateFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);

            position: relative;

            overflow: hidden;

        }

        .gate-card::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            height: 4px;

            background: linear-gradient(90deg, #14b8a6, #8b5cf6);

        }

        @keyframes gateFadeIn {

            from { opacity: 0; transform: translateY(30px); }

            to { opacity: 1; transform: translateY(0); }

        }

        .gate-icon {

            font-size: 54px;

            margin-bottom: 24px;

            display: inline-block;

            animation: pulseGlow 2.5s infinite ease-in-out;

        }

        @keyframes pulseGlow {

            0%, 100% { filter: drop-shadow(0 0 8px rgba(20,184,166,0.3)); transform: scale(1); }

            50% { filter: drop-shadow(0 0 20px rgba(20,184,166,0.75)); transform: scale(1.08); }

        }

        .gate-title {

            font-size: 24px;

            font-weight: 800;

            margin-bottom: 12px;

            letter-spacing: -0.5px;

            color: #0f172a;

        }

        .gate-subtitle {

            font-size: 13px;

            color: #475569;

            margin-bottom: 30px;

            line-height: 1.7;

        }

        .gate-input-wrapper {

            position: relative;

            margin-bottom: 20px;

        }

        .gate-input {

            width: 100%;

            padding: 16px 20px;

            border-radius: var(--radius-md);

            border: 1px solid rgba(0, 0, 0, 0.1);

            background: rgba(255, 255, 255, 0.85);

            color: #0f172a;

            font-size: 16px;

            outline: none;

            transition: all 0.3s;

            text-align: center;

            letter-spacing: 0.5px;

            font-family: inherit;

        }

        .gate-input:focus {

            border-color: var(--primary);

            box-shadow: 0 0 14px rgba(20, 184, 166, 0.15);

            background: rgba(255, 255, 255, 1);

        }

        .gate-btn {

            background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%);

            color: white;

            border: none;

            width: 100%;

            padding: 16px;

            border-radius: var(--radius-md);

            font-weight: 700;

            font-size: 15px;

            cursor: pointer;

            transition: all 0.2s;

            box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);

            font-family: inherit;

        }

        .gate-btn:hover {

            background: linear-gradient(135deg, #18e0cb 0%, var(--primary) 100%);

            box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);

        }

        .gate-btn:active {

            transform: scale(0.98);

        }

        /* Shake animation for errors */

        .shake {

            animation: shake 0.4s ease;

        }

        @keyframes shake {

            0%, 100% { transform: translateX(0); }

            20%, 60% { transform: translateX(-8px); }

            40%, 80% { transform: translateX(8px); }

        }

        /* --- Portal Navigation & Dashboard Styles --- */
        .portal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 20px;
            margin-bottom: 8px;
        }

        .app-nav {
            display: flex;
            background: rgba(15, 23, 42, 0.05);
            padding: 4px;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.03);
            gap: 4px;
        }

        .app-nav-btn {
            border: none;
            background: none;
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-muted);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .app-nav-btn:hover {
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.4);
        }

        .app-nav-btn.active {
            background: #ffffff;
            color: var(--primary);
            box-shadow: var(--shadow-sm);
        }

        /* Dashboard Home */
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 10px;
        }

        .dashboard-card {
            background: var(--surface-card);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius-md);
            padding: 32px 24px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            text-align: left;
        }

        .dashboard-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(20, 184, 166, 0.25);
        }

        .dashboard-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--card-color, var(--primary));
            opacity: 0.85;
        }

        .dashboard-card-icon {
            font-size: 36px;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--card-bg-light, rgba(20, 184, 166, 0.08));
            border-radius: 12px;
            transition: all 0.3s;
        }

        .dashboard-card:hover .dashboard-card-icon {
            transform: scale(1.1) rotate(3deg);
        }

        .dashboard-card-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-main);
        }

        .dashboard-card-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .dashboard-card-action {
            margin-top: auto;
            font-size: 11px;
            font-weight: 800;
            color: var(--card-color, var(--primary));
            display: flex;
            align-items: center;
            gap: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .dashboard-card-action svg {
            transition: transform 0.2s;
        }

        .dashboard-card:hover .dashboard-card-action svg {
            transform: translateX(4px);
        }

        /* --- Ajustes específicos para Tablet S6 Lite (Tela Cheia e Split Screen) --- */
        @media (max-width: 1024px) {
            body {
                padding: 10px 1%;
            }
            .container {
                padding: 20px;
                gap: 20px;
                border-radius: var(--radius-md);
            }
            .portal-header h1 {
                font-size: 18px !important;
            }
        }

        /* Modo Split Screen (Meia Tela no Tablet - ~480px a 600px de largura) */
        @media (max-width: 680px) {
            .portal-header {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                padding-bottom: 12px;
            }
            .portal-header h1 {
                text-align: center;
                font-size: 16px !important;
            }
            .app-nav {
                justify-content: space-around;
                width: 100%;
                overflow-x: auto;
            }
            .app-nav-btn {
                padding: 10px 8px;
                font-size: 11px;
                flex: 1;
                justify-content: center;
            }
            .container {
                padding: 14px;
                gap: 16px;
            }
            .clinical-workbench {
                flex-direction: column;
                gap: 20px;
            }
            .workbench-left, .workbench-right {
                flex: 1;
                width: 100%;
                min-width: 100%;
            }
            /* Otimização dos textareas no celular/tablet */
            textarea {
                min-height: 160px !important;
                font-size: 13px !important;
            }
            .preview-wrapper {
                padding: 16px;
            }
            .btn {
                padding: 14px;
                font-size: 14px;
            }
            /* Aumentar tamanhos de toque em formulários */
            .news2-calc input, .news2-calc select, .sofa-calc select {
                padding: 10px !important;
                font-size: 13px !important;
            }
        }

        /* Botão Limpar Estilos */
        .btn-clear-all {
            background: rgba(239, 68, 68, 0.08);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #dc2626;
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
        }
        .btn-clear-all:hover {
            background: rgba(239, 68, 68, 0.15);
            border-color: #dc2626;
        }
        .btn-clear-all:active {
            transform: scale(0.95);
        }

        /* --- Barra de Abas de Pacientes (Premium Touch Tabs) --- */
        .patient-tabs-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 12px;
            margin-bottom: 8px;
            width: 100%;
        }

        .patient-tabs-bar {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none; /* Firefox */
            flex: 1;
            padding: 2px 0;
            -webkit-overflow-scrolling: touch;
        }

        .patient-tabs-bar::-webkit-scrollbar {
            display: none; /* Safari e Chrome */
        }

        .patient-tab {
            background: rgba(15, 23, 42, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 8px 14px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-muted);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .patient-tab:hover {
            background: rgba(15, 23, 42, 0.08);
            color: var(--text-main);
        }

        .patient-tab.active {
            background: linear-gradient(135deg, var(--primary) 0%, #0f766e 100%);
            color: white;
            border-color: transparent;
            box-shadow: 0 4px 10px rgba(13, 148, 136, 0.15);
        }

        .patient-tab-close-btn {
            border: none;
            background: none;
            color: inherit;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            padding: 0 2px;
            opacity: 0.6;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            width: 16px;
            height: 16px;
        }

        .patient-tab-close-btn:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.2);
        }

        .patient-tab.active .patient-tab-close-btn:hover {
            background: rgba(0, 0, 0, 0.15);
        }

        .btn-add-patient {
            background: var(--surface-card);
            border: 1px dashed var(--primary);
            color: var(--primary);
            padding: 8px 14px;
            font-size: 13px;
            font-weight: 700;
            border-radius: 10px;
            cursor: pointer;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
        }

        .btn-add-patient:hover {
            background: rgba(20, 184, 166, 0.05);
            border-style: solid;
        }

        /* --- Unified PCDTs View Styles --- */
        .pcdts-sidebar {
            user-select: none;
        }
        
        .pcdts-letter-btn {
            background: #f1f5f9;
            color: #64748b;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            padding: 4px 8px;
            cursor: pointer;
            transition: all 0.2s;
            text-transform: uppercase;
            font-size: 10px;
        }
        
        .pcdts-letter-btn:hover, .pcdts-letter-btn.active {
            background: #0f766e;
            color: white;
            border-color: #0f766e;
        }
        
        .pcdts-list-item {
            background: #f8fafc;
            border: 1px solid #f1f5f9;
            border-radius: 8px;
            padding: 10px 12px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            text-align: left;
            font-size: 12.5px;
            color: var(--text-main);
        }
        
        .pcdts-list-item:hover {
            background: #f1f5f9;
            border-color: #cbd5e1;
            transform: translateX(2px);
        }
        
        .pcdts-list-item.active {
            background: #eff6ff;
            border-color: #bfdbfe;
            color: #1e40af;
            font-weight: 700;
        }
        
        .pcdts-list-item.active-calc {
            background: #f0fdf4;
            border-color: #bbf7d0;
            color: #166534;
            font-weight: 700;
        }
        
        .pcdts-list-item-badge {
            font-size: 9px;
            font-weight: 800;
            padding: 2px 6px;
            border-radius: 20px;
            text-transform: uppercase;
            white-space: nowrap;
        }
        
        .pcdts-list-item-badge.calc {
            background: #dcfce7;
            color: #166534;
            border: 1px solid #bbf7d0;
        }
        
        .pcdts-list-item-badge.pdf {
            background: #f1f5f9;
            color: #475569;
            border: 1px solid #e2e8f0;
        }
        
        .pcdts-list-item.active .pcdts-list-item-badge.pdf {
            background: #dbeafe;
            color: #1e40af;
        }
        
        .pcdts-list-item.active-calc .pcdts-list-item-badge.calc {
            background: #166534;
            color: white;
        }