@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
    color: #334155;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #1e3a8a;
    font-weight: 800;
    font-size: 2.5em;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    width: 280px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.card h2 {
    margin-top: 0;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.5em;
}

.card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.5;
}

button {
    background-color: #1e3a8a;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: 100%;
}

button:hover {
    background-color: #1e40af;
}

button:active {
    transform: scale(0.98);
}

.btn-success {
    background-color: #10b981;
}

.btn-success:hover {
    background-color: #059669;
}

.form-card {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95em;
}

select, input {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #334155;
    background-color: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
}

select:focus, input:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    background-color: #ffffff;
}

.result-box {
    margin-top: 30px;
    padding: 24px;
    background: #f0fdf4;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
}

.result-box h3 {
    color: #166534;
    margin-top: 0;
}

.result-box .salary-amount {
    font-size: 2em;
    font-weight: 800;
    color: #10b981;
    margin: 10px 0;
}

/* ========================================================
   REDISEÑO COMPARADOR (SaaS Layout)
   ======================================================== */

.comparador-body {
    margin: 0;
    padding: 0;
    background-color: #F8FAFC;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.security-header {
    background-color: #e0f2fe;
    color: #0369a1;
    font-size: 0.85em;
    font-weight: 600;
    text-align: center;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.comparador-layout {
    display: flex;
    flex: 1;
    height: calc(100vh - 35px); /* Header height */
    overflow: hidden;
}

/* Columna Izquierda (Motor) */
.col-izq {
    width: 40%;
    min-width: 350px;
    background-color: #F8FAFC;
    padding: 40px;
    overflow-y: auto;
    box-sizing: border-box;
}

.col-izq::-webkit-scrollbar {
    width: 6px;
}
.col-izq::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.accordion-step {
    background-color: #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.accordion-step.active {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 6px solid #001F3F;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    color: #0f172a;
    cursor: default;
}

.step-header {
    font-weight: 700;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-content {
    display: none;
    margin-top: 20px;
}

.accordion-step.active .step-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 5px;
    color: #475569;
}

.form-group select, .form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 1em;
    box-sizing: border-box;
}

.form-group select:focus, .form-group input:focus {
    border-color: #001F3F;
    box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.1);
}

.btn-next-step {
    background-color: #FF8C00;
    color: white;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    transition: opacity 0.2s, transform 0.1s;
    border: none;
    width: 100%;
    font-size: 1em;
}

.btn-next-step:hover {
    background-color: #e67e00;
}

.btn-next-step:active {
    transform: scale(0.98);
}

/* Toggle Buttons for Hospital/Primary */
.toggle-group {
    display: flex;
    background-color: #f1f5f9;
    border-radius: 8px;
    padding: 4px;
}
.toggle-btn {
    flex: 1;
    padding: 8px 0;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    color: #64748b;
    border-radius: 6px;
    transition: all 0.2s;
}
.toggle-btn.active {
    background-color: #001F3F;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Columna Derecha (Dashboard) */
.col-der {
    width: 60%;
    padding: 40px;
    background-color: #F8FAFC;
    overflow-y: auto;
    box-sizing: border-box;
}

.col-der::-webkit-scrollbar {
    width: 6px;
}
.col-der::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.dashboard-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    padding: 40px;
    min-height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.dashboard-card h2 {
    margin-top: 0;
    color: #001F3F;
    font-size: 1.8em;
    font-weight: 800;
    margin-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.dashboard-section {
    margin-bottom: 40px;
}

/* Gráfico */
.chart-bar-container {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.chart-label {
    width: 80px;
    font-weight: 700;
    color: #001F3F;
    font-size: 0.95em;
}

.chart-track {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 20px;
    height: 32px;
    overflow: hidden;
    position: relative;
}

.chart-fill {
    height: 100%;
    background-color: #001F3F;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: bold;
    font-size: 0.85em;
    transition: width 0.5s ease-out;
}

.chart-fill.winner {
    background-color: #FF8C00;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

/* Tabla limpia */
.clean-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* Forzamos anchos de columna */
}

.clean-table th, .clean-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #f1f5f9;
}

.clean-table th {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.clean-table td {
    color: #0f172a;
    font-weight: 600;
}

.clean-table td.value-cell {
    text-align: right;
    font-size: 1.05em;
}

.value-cell span {
    display: block; /* Forzamos nueva línea para ahorrar espacio horizontal */
    width: fit-content;
    margin-left: auto; /* Alineación a la derecha */
}

.clean-table tr.total-row td {
    border-top: 2px solid #e2e8f0;
    border-bottom: none;
    font-size: 1.2em;
    font-weight: 800;
    color: #001F3F;
    padding-top: 20px;
}

.val-positive {
    color: #10b981;
    background-color: #ecfdf5;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75em;
    display: block; /* Nueva línea para no descuadrar columnas */
    margin-top: 4px;
    font-weight: bold;
}

.val-negative {
    color: #ef4444;
    background-color: #fef2f2;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75em;
    display: block; /* Nueva línea */
    margin-top: 4px;
    font-weight: bold;
}

/* Acciones */
.dashboard-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
}

.btn-primary {
    background-color: #FF8C00;
    color: white;
    font-size: 1.2em;
    font-weight: 800;
    padding: 18px;
    border-radius: 12px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-primary:hover {
    background-color: #e67e00;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background-color: #1D6F42;
    color: white;
    font-weight: 600;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #145331;
}

.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #cbd5e1;
    color: white;
    font-size: 11px;
    font-weight: bold;
    margin-left: 8px;
    cursor: help;
    vertical-align: middle;
}

.tooltip-icon:hover {
    background-color: #001F3F;
}

.disclaimer {
    font-size: 0.75em;
    color: #94a3b8;
    text-align: center;
    margin-top: 30px;
}/* ========================================================
   GLOBAL HEADER (CENTERED)
   ======================================================== */
.global-header {
    background-color: white;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between; /* Space logo/title from right-side actions */
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-center {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    height: 40px;
    width: 40px;
}

.header-title {
    color: #1D6F42;
    font-weight: 800;
    font-size: 1.3em;
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
}

.btn-header-glosario {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f1f5f9;
    color: #001F3F;
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9em;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn-header-glosario:hover {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.btn-header-glosario span {
    font-size: 1.2em;
}

/* ========================================================
   HOME PAGE (PORTADA) - NO SCROLL
   ======================================================== */
.portada-body {
    margin: 0;
    padding: 0;
    background-color: #f8fafc;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home-container {
    max-width: 800px;
    margin: auto; /* Center vertically and horizontally */
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
}

.hero-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    margin-bottom: 20px;
}

.hero-logo-large {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
}

.hero-card h1 {
    color: #001F3F;
    font-size: 1.8em;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 0;
}

.hero-description {
    color: #475569;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-section {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 15px 25px;
    margin-bottom: 25px;
    border: 1px solid #f1f5f9;
}

.philosophy-section h2 {
    color: #001F3F;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 0;
}

.philosophy-section p {
    color: #64748b;
    font-size: 0.85em;
    line-height: 1.5;
    margin: 0;
}

.btn-hero {
    background-color: #1e3a8a;
    color: white;
    font-size: 1.05em;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    border: none;
    cursor: pointer;
}

/* Bottom Convenio Buttons Styles */
.convenio-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-convenio {
    flex: 1;
    color: white;
    padding: 12px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
    font-size: 0.8em;
    text-align: center;
}

.btn-convenio:hover {
    opacity: 0.9;
}

.btn-ics { background-color: #0369a1; } /* Blue ICS */
.btn-siscat { background-color: #0f172a; } /* Black/Dark SISCAT */
.btn-sem { background-color: #b91c1c; } /* Red for SEM / Ambulance */

.btn-convenio svg {
    width: 18px;
    height: 18px;
    fill: white;
    flex-shrink: 0;
}

.footer-disclaimer {
    background-color: #f1f5f9;
    border-radius: 12px;
    padding: 15px 20px;
    color: #64748b;
    font-size: 0.75em;
    line-height: 1.5;
    text-align: left;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

}

/* -------------------------------------
   INSIGHT ENGINE (COMPARADOR)
-------------------------------------- */
.insight-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9em;
    line-height: 1.4;
    border: 1px solid transparent;
}

.insight-box.insight-fijo {
    background-color: #f0fdf4; /* Verde muy claro */
    border-color: #bbf7d0;
    color: #166534;
}

.insight-box.insight-guardias {
    background-color: #fffbeb; /* Amarillo muy suave */
    border-color: #fde68a;
    color: #92400e;
}

.insight-box.insight-carrera {
    background-color: #eff6ff; /* Azul pastel */
    border-color: #bfdbfe;
    color: #1e40af;
}

.insight-box.insight-empate {
    background-color: #f8fafc;
    border-color: #e2e8f0;
    color: #334155;
}

.insight-icon {
    font-size: 1.4em;
    line-height: 1;
    margin-top: 2px;
}

.insight-content strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.insight-content p {
    margin: 0;
    font-style: italic;
    opacity: 0.9;
}

/* -------------------------------------
   MÓDULO DE TRANSPARENCIA (MODAL)
-------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    padding: 30px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #0f172a;
}

.modal-header {
    margin-bottom: 25px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.modal-header h2 {
    color: #001F3F;
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.modal-subtitle {
    color: #1D6F42;
    font-weight: 600;
    margin: 0;
    font-size: 0.95em;
    background: #ecfdf5;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.breakdown-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.breakdown-table th, .breakdown-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e2e8f0;
}

.breakdown-table th {
    text-align: left;
    color: #64748b;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #cbd5e1;
}

.section-title td {
    background-color: #f8fafc;
    color: #0f172a;
    font-weight: bold;
    font-size: 0.9em;
    text-transform: uppercase;
    padding-top: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.modal-total-row td {
    font-size: 1.2em;
    font-weight: 800;
    color: #001F3F;
    border-top: 3px solid #001F3F;
    border-bottom: none;
    padding-top: 15px;
}

.modal-audit-notes {
    background-color: #f8fafc;
    border-left: 4px solid #FF8C00;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
}

.modal-audit-notes h3 {
    margin: 0 0 10px 0;
    font-size: 1em;
    color: #0f172a;
}

.modal-audit-notes ul {
    margin: 0;
    padding-left: 20px;
    color: #475569;
    font-size: 0.9em;
    line-height: 1.5;
}

.modal-audit-notes li {
    margin-bottom: 5px;
}

.modal-disclaimer {
    font-size: 0.85em;
    color: #64748b;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
    font-style: italic;
}

/* Botón de desglose en la tabla principal */
.btn-info {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 5px;
}

.btn-info:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

/* ========================================================
   MOBILE FIRST OPTIMIZATIONS (Sticky Results)
   ======================================================== */
.mobile-close-sheet {
    display: none;
}

.sticky-summary {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #001F3F;
    color: white;
    z-index: 1000;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    border-radius: 20px 20px 0 0;
    cursor: pointer;
    transition: background-color 0.3s;
    box-sizing: border-box;
}

.sticky-summary.flash-anim {
    animation: flashUpdate 0.5s ease-out;
}

@keyframes flashUpdate {
    0% { background-color: #1D6F42; }
    100% { background-color: #001F3F; }
}

.sticky-content strong {
    color: #fff;
    font-size: 1.1em;
}

.sticky-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9em;
    color: #cbd5e1;
}

/* Mobile Sliders */
.mobile-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    outline: none;
    margin-top: 10px;
}
.mobile-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1e3a8a;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.mobile-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1e3a8a;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider-val {
    float: right;
    font-weight: 700;
    color: #1e3a8a;
    font-size: 1.1em;
}

.security-header {
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .comparador-layout {
        flex-direction: column;
        overflow-y: auto;
    }
    
    .col-izq {
        width: 100%;
        min-width: 100%;
        padding: 20px;
        margin-bottom: 80px; /* Space for sticky summary */
        overflow-y: visible;
    }

    .col-der {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        height: 85vh;
        z-index: 2000;
        background: #ffffff;
        border-radius: 24px 24px 0 0;
        transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
        overflow-y: auto;
        padding: 0;
    }
    
    .col-der .dashboard-card {
        margin: 0;
        border-radius: 24px 24px 0 0;
        min-height: 100%;
    }

    body.bottom-sheet-open::after {
        content: "";
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(15, 23, 42, 0.5);
        z-index: 1500;
        backdrop-filter: blur(2px);
    }
    
    body.bottom-sheet-open .col-der {
        bottom: 0;
    }

    .mobile-close-sheet {
        display: flex !important;
        background: #f1f5f9;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 18px;
        color: #64748b;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .sticky-summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .security-header {
        display: flex;
        align-items: flex-start;
        text-align: left;
        padding: 10px 20px;
    }
    .security-text {
        display: none;
    }
    .security-header.expanded .security-text {
        display: block;
    }
}