:root{
    --main:#0f3d2e;
    --accent:#8bd450;
    --bg:#f3f7f4;
    --text:#17231d;
    --muted:#68756e;
    --card:#ffffff;
    --border:#dce7df;
    --danger:#b42318;
    --warning:#b7791f;
    }

/* ============================
   AJUSTE FINAL FOTO DE PERFIL
============================ */

/* Foto del login */
.login-card .login-profile-photo {
    width: 130px !important;
    height: 130px !important;
    max-width: 130px !important;
    max-height: 130px !important;
    min-width: 130px !important;
    min-height: 130px !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto 28px auto !important;
    border-radius: 28px !important;
    border: 6px solid #f4faf6 !important;
    box-shadow: 0 14px 34px rgba(15, 61, 46, 0.14) !important;
    background: #ffffff !important;
}

/* Caja del login para que no se deforme */
.login-card {
    max-width: 520px !important;
    overflow: hidden !important;
}

/* Foto superior derecha */
.user-chip.profile-chip {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 7px 12px 7px 7px !important;
    border-radius: 999px !important;
    max-height: 62px !important;
}

/* Imagen del perfil superior */
.user-chip.profile-chip .top-profile-photo,
.top-profile-photo {
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    border: 2px solid #e4f1e8 !important;
}

/* Texto superior */
.top-profile-info {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.1 !important;
}

.top-profile-info span {
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #10241c !important;
}

.top-profile-info small {
    font-size: 12px !important;
    color: #5c7067 !important;
}

/* Perfil lateral */
.sidebar-profile {
    margin: 14px 20px 24px !important;
    padding: 10px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Imagen del perfil lateral */
.sidebar-profile .sidebar-profile-photo,
.sidebar-profile-photo {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    border: 2px solid rgba(255, 255, 255, 0.35) !important;
}

/* Texto lateral */
.sidebar-profile strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 13px !important;
    line-height: 1.1 !important;
}

.sidebar-profile span {
    display: block !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 11px !important;
    margin-top: 3px !important;
}

/* Evita que cualquier imagen dentro del perfil se agrande */
.profile-chip img,
.sidebar-profile img,
.login-card img.login-profile-photo {
    flex-shrink: 0 !important;
}

/* ============================
   AJUSTE LOGO EN VALIDACIÓN PÚBLICA
============================ */

.validation-card .validation-logo,
.validation-card img.validation-logo {
    width: 74px !important;
    height: 74px !important;
    max-width: 74px !important;
    max-height: 74px !important;
    min-width: 74px !important;
    min-height: 74px !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    padding: 8px !important;
    border: 1px solid #dce7df !important;
}

/* Si la imagen de validación quedó sin clase, esto la controla también */
.validation-card > img,
.validation-card header img,
.validation-card .logo-box img {
    width: 74px !important;
    height: 74px !important;
    max-width: 74px !important;
    max-height: 74px !important;
    object-fit: contain !important;
    border-radius: 18px !important;
}

/* ============================
   CAMPO DE CONTRASEÑA CON OJO
============================ */

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 52px !important;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: #0f3d2e;
    padding: 6px;
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
}

.password-toggle:hover {
    background: rgba(15, 61, 46, 0.08);
}

.password-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

*{box-sizing:border-box}
body{margin:0;font-family:Inter,Segoe UI,Arial,sans-serif;background:var(--bg);color:var(--text)}
a{color:var(--main);text-decoration:none} a:hover{text-decoration:underline}
.app-shell{display:flex;min-height:100vh}.sidebar{width:280px;background:#0b2f24;color:white;padding:24px;position:sticky;top:0;height:100vh;display:flex;flex-direction:column;gap:26px}.brand{display:flex;gap:12px;align-items:center}.brand img{width:52px;height:52px;object-fit:contain;background:white;border-radius:14px;padding:6px}.brand strong{display:block;line-height:1.15}.brand span,.sidebar-footer small{color:#bcd2c6;font-size:12px}.nav-menu{display:flex;flex-direction:column;gap:8px}.nav-menu a{color:#e9f4ee;padding:12px 14px;border-radius:12px}.nav-menu a.active,.nav-menu a:hover{background:rgba(139,212,80,.16);text-decoration:none}.sidebar-footer{margin-top:auto;border-top:1px solid rgba(255,255,255,.12);padding-top:16px}.sidebar-footer a{color:white;display:block;margin-top:5px}.main-content{flex:1;padding:30px;max-width:calc(100% - 280px)}.topbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.topbar h1{margin:0;font-size:30px}.eyebrow{text-transform:uppercase;letter-spacing:.14em;color:var(--muted);font-size:12px;font-weight:700;margin:0 0 6px}.user-chip{display:flex;gap:12px;align-items:center;background:white;border:1px solid var(--border);border-radius:999px;padding:8px 14px}.card,.stat-card{background:var(--card);border:1px solid var(--border);border-radius:20px;box-shadow:0 14px 38px rgba(15,61,46,.07)}.card{padding:22px;margin-bottom:22px}.card.narrow{max-width:980px}.card-header{display:flex;justify-content:space-between;gap:18px;align-items:center;margin-bottom:16px}.card-header h2,.card h2{margin:0}.stats-grid{display:grid;grid-template-columns:repeat(4,minmax(160px,1fr));gap:18px;margin-bottom:22px}.stat-card{padding:22px}.stat-card span{display:block;color:var(--muted);font-size:14px}.stat-card strong{display:block;margin-top:8px;font-size:34px;color:var(--main)}.stat-card.warning strong{color:var(--warning)}.quick-actions,.actions-bar,.filters,.form-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin-bottom:18px}.btn{border:0;border-radius:12px;padding:11px 16px;font-weight:700;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;text-decoration:none}.btn:hover{text-decoration:none;filter:brightness(.98)}.btn-primary{background:var(--main);color:white}.btn-secondary{background:#e8f3ec;color:var(--main)}.btn-accent{background:var(--accent);color:#102618}.btn-danger{background:var(--danger);color:white}.btn-light{background:#f2f5f3;color:#24342b;border:1px solid var(--border)}.table-responsive{width:100%;overflow:auto}table{width:100%;border-collapse:collapse}th,td{text-align:left;padding:13px 12px;border-bottom:1px solid var(--border);vertical-align:top}th{font-size:12px;text-transform:uppercase;letter-spacing:.06em;color:#516158;background:#f8fbf9}.actions{display:flex;gap:10px;flex-wrap:wrap}.actions .danger{color:var(--danger)}.table-link{font-weight:700}.empty{text-align:center;color:var(--muted);padding:30px}.muted{color:var(--muted)}.search-form{display:flex;gap:10px;margin:16px 0}.search-form input{flex:1}.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.form-stack{display:grid;gap:14px}.span-2{grid-column:span 2}label{font-weight:700;color:#263b30;font-size:14px}input,select,textarea{width:100%;margin-top:7px;border:1px solid var(--border);border-radius:12px;padding:12px 13px;font:inherit;background:white;color:var(--text)}textarea{resize:vertical}.alert{padding:13px 15px;border-radius:14px;margin:12px 0;border:1px solid}.alert-success{background:#edf8ea;border-color:#cceac3;color:#27632a}.alert-danger{background:#fff1f0;border-color:#ffd0cc;color:#99231a}.alert-warning{background:#fff8e8;border-color:#f3dda5;color:#744b00}.status-badge{display:inline-flex;border-radius:999px;padding:5px 10px;font-size:12px;font-weight:800}.badge-ok{background:#e7f8e2;color:#1d672b}.badge-warning{background:#fff4d9;color:#9a5d00}.badge-danger{background:#ffe8e5;color:#9b2117}.badge-muted{background:#eef1ef;color:#546158}.detail-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 22px}.detail-grid p{background:#f9fbfa;border:1px solid var(--border);border-radius:14px;margin:0;padding:13px}.login-body,.validation-body{min-height:100vh;display:grid;place-items:center;background:radial-gradient(circle at top left,#dff5d2,transparent 34%),var(--bg);padding:20px}.login-card,.validation-card{width:min(560px,100%);background:white;border:1px solid var(--border);border-radius:28px;box-shadow:0 24px 70px rgba(15,61,46,.14);padding:34px}.login-logo,.validation-logo{width:78px;height:78px;object-fit:contain;border-radius:18px;background:#f5f8f6;padding:8px}.validation-card{width:min(760px,100%)}.validation-form{display:flex;gap:10px;margin:20px 0}.valid-box{background:#edf8ea;border:1px solid #cceac3;border-radius:18px;padding:18px;margin:16px 0}.invalid-box{background:#fff1f0;border:1px solid #ffd0cc;border-radius:18px;padding:18px;margin:16px 0}.valid-box h2,.invalid-box h2{margin:0 0 6px}.public-detail{margin-top:14px}.legal-public{font-size:12px;color:var(--muted);text-align:center;margin-top:22px}
@media(max-width:960px){.app-shell{display:block}.sidebar{position:relative;width:100%;height:auto}.main-content{max-width:none;padding:18px}.stats-grid{grid-template-columns:repeat(2,1fr)}.form-grid,.detail-grid{grid-template-columns:1fr}.span-2{grid-column:span 1}.topbar{align-items:flex-start;gap:14px;flex-direction:column}.card-header{align-items:flex-start;flex-direction:column}.search-form,.validation-form{flex-direction:column}}
@media(max-width:560px){.stats-grid{grid-template-columns:1fr}.actions{display:block}.actions a{display:inline-block;margin:4px 8px 4px 0}}

.select-multiple {
    width: 100%;
    min-height: 150px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid #d8e5dc;
    background: #fff;
    font-size: 14px;
    color: #0b2e24;
    outline: none;
}

.select-multiple:focus {
    border-color: #85d64d;
    box-shadow: 0 0 0 3px rgba(133, 214, 77, 0.15);
}

.select-multiple option {
    padding: 8px;
}

.select-multiple optgroup {
    font-weight: 700;
    color: #0b3d2e;
}

form small {
    display: block;
    margin-top: 6px;
    color: #60706a;
    font-size: 12px;
}

/* ==========================
   MENÚ MÓVIL DESPLEGABLE
========================== */

.mobile-menu-btn {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .app-shell {
        display: block;
        width: 100%;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 14px;
        left: 14px;
        z-index: 1200;
        background: #0b3d2e;
        color: #ffffff;
        border: none;
        border-radius: 14px;
        padding: 11px 15px;
        font-size: 15px;
        font-weight: 800;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20);
        cursor: pointer;
    }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 999;
    }

    body.mobile-menu-open .mobile-menu-overlay {
        display: block;
    }

    .sidebar {
        position: fixed !important;
        top: 0;
        left: -320px;
        width: 290px;
        max-width: 86vw;
        height: 100vh;
        z-index: 1100;
        overflow-y: auto;
        transition: left 0.28s ease;
        box-shadow: 12px 0 35px rgba(0, 0, 0, 0.25);
        border-radius: 0 !important;
    }

    body.mobile-menu-open .sidebar {
        left: 0;
    }

    .main-content {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 78px 18px 28px !important;
    }

    .topbar {
        display: block;
        margin-bottom: 18px;
    }

    .topbar h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    .user-chip.profile-chip {
        margin-top: 16px;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
    }

    .card {
        width: 100%;
        overflow-x: auto;
    }

    .table-responsive {
        overflow-x: auto;
    }
}

/* ==========================
   BOTÓN CERRAR SIDEBAR MÓVIL
========================== */

.sidebar-close {
    display: none;
}

@media (max-width: 768px) {
    .sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
        font-size: 28px;
        font-weight: 800;
        cursor: pointer;
        z-index: 1300;
    }

    .sidebar-close:hover {
        background: rgba(255, 255, 255, 0.20);
    }

    .sidebar-profile {
        margin-top: 42px;
    }
}

/* ==========================
   CORRECCIÓN FINAL MENÚ MÓVIL
========================== */

@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }

    body.mobile-menu-open {
        overflow: hidden !important;
    }

    .app-shell {
        display: block !important;
        width: 100% !important;
        min-height: 100vh !important;
    }

    .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 14px;
        left: 14px;
        z-index: 1200;
        background: #0b3d2e;
        color: #ffffff;
        border: none;
        border-radius: 14px;
        padding: 11px 15px;
        font-size: 15px;
        font-weight: 800;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20);
        cursor: pointer;
    }

    body.mobile-menu-open .mobile-menu-btn {
        display: none !important;
    }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 999;
    }

    body.mobile-menu-open .mobile-menu-overlay {
        display: block !important;
    }

    .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -320px !important;
        width: 290px !important;
        max-width: 86vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        z-index: 1100 !important;
        overflow-y: auto !important;
        transition: left 0.28s ease !important;
        box-shadow: 12px 0 35px rgba(0, 0, 0, 0.25) !important;
        border-radius: 0 !important;
        padding: 24px !important;
    }

    body.mobile-menu-open .sidebar {
        left: 0 !important;
    }

    .sidebar-close {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
        font-size: 28px;
        font-weight: 800;
        cursor: pointer;
        z-index: 1300;
    }

    .sidebar-close:hover {
        background: rgba(255, 255, 255, 0.20);
    }

    .sidebar-profile {
        margin: 46px 0 24px 0 !important;
    }

    .main-content {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        padding: 78px 18px 28px !important;
    }

    .topbar {
        display: block !important;
        margin-bottom: 18px !important;
    }

    .topbar h1 {
        font-size: 30px !important;
        line-height: 1.1 !important;
    }

    .user-chip.profile-chip {
        margin-top: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: flex-start !important;
        border-radius: 18px !important;
    }

    .card {
        width: 100% !important;
        overflow-x: auto !important;
    }

    .table-responsive {
        overflow-x: auto !important;
    }

    .form-grid,
    .detail-grid {
        grid-template-columns: 1fr !important;
    }

    .span-2 {
        grid-column: span 1 !important;
    }
}

/* ==========================
   TABLA DE SERVICIOS - EVITAR TEXTOS APILADOS
========================== */

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto !important;
}

table th,
table td {
    vertical-align: top;
}

/* Tabla de servicios */
.services-table th,
.services-table td {
    white-space: nowrap;
}

/* Permitir que solo el nombre del cliente pueda ocupar más espacio si es muy largo */
.services-table td:first-child,
.services-table th:first-child {
    white-space: normal;
    min-width: 260px;
}

/* Técnico */
.services-table td:nth-child(2),
.services-table th:nth-child(2) {
    min-width: 220px;
}

/* Tipo */
.services-table td:nth-child(3),
.services-table th:nth-child(3) {
    min-width: 160px;
}

/* Fecha */
.services-table td:nth-child(4),
.services-table th:nth-child(4) {
    min-width: 110px;
}

/* Próxima revisión */
.services-table td:nth-child(5),
.services-table th:nth-child(5) {
    min-width: 140px;
}

/* Estado */
.services-table td:nth-child(6),
.services-table th:nth-child(6) {
    min-width: 90px;
}

/* Certificado */
.services-table td:nth-child(7),
.services-table th:nth-child(7) {
    min-width: 210px;
}

/* Acciones */
.services-table td:nth-child(8),
.services-table th:nth-child(8) {
    min-width: 150px;
}

.services-table .actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.services-table .actions a,
.services-table .actions button {
    white-space: nowrap;
}

/* Badge de estado */
.services-table .badge,
.services-table .status-badge {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* En móvil sí permitimos scroll horizontal */
@media (max-width: 768px) {
    .services-table {
        min-width: 1200px;
    }
}

/* ==========================
   TABLA DE CERTIFICADOS - EVITAR TEXTOS APILADOS
========================== */

.certificates-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto !important;
}

.certificates-table th,
.certificates-table td {
    vertical-align: middle;
    white-space: nowrap;
}

/* Código del certificado */
.certificates-table td:nth-child(1),
.certificates-table th:nth-child(1) {
    min-width: 190px;
    white-space: nowrap;
}

/* Cliente */
.certificates-table td:nth-child(2),
.certificates-table th:nth-child(2) {
    min-width: 260px;
    white-space: normal;
}

/* Correo dentro del cliente */
.certificates-table td:nth-child(2) small {
    display: block;
    margin-top: 4px;
    white-space: nowrap;
    color: #60706a;
}

/* NIT */
.certificates-table td:nth-child(3),
.certificates-table th:nth-child(3) {
    min-width: 140px;
    white-space: nowrap;
}

/* Fecha servicio */
.certificates-table td:nth-child(4),
.certificates-table th:nth-child(4) {
    min-width: 120px;
    white-space: nowrap;
}

/* Próxima revisión */
.certificates-table td:nth-child(5),
.certificates-table th:nth-child(5) {
    min-width: 140px;
    white-space: nowrap;
}

/* Técnico */
.certificates-table td:nth-child(6),
.certificates-table th:nth-child(6) {
    min-width: 220px;
    white-space: nowrap;
}

/* Estado */
.certificates-table td:nth-child(7),
.certificates-table th:nth-child(7) {
    min-width: 100px;
    white-space: nowrap;
}

/* Emisión */
.certificates-table td:nth-child(8),
.certificates-table th:nth-child(8) {
    min-width: 150px;
    white-space: nowrap;
}

/* Acciones */
.certificates-table td:nth-child(9),
.certificates-table th:nth-child(9) {
    min-width: 210px;
    white-space: nowrap;
}

/* Acciones dentro de la tabla */
.certificates-table td:nth-child(9) a {
    display: inline-block;
    margin-right: 10px;
    font-weight: 700;
    white-space: nowrap;
}

/* Estado / badge */
.certificates-table .status-badge,
.certificates-table .badge-ok,
.certificates-table .badge-warning,
.certificates-table .badge-danger,
.certificates-table .badge-muted {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
}

/* Contenedor con scroll horizontal */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

/* En móvil la tabla se desplaza horizontalmente */
@media (max-width: 768px) {
    .certificates-table {
        min-width: 1450px;
    }

    .certificates-table th,
    .certificates-table td {
        font-size: 13px;
    }
}

/* ==========================
   SOPORTE DE EMERGENCIA POR CORREO
========================== */

.emergency-widget {
    margin: 6px 0 0;
}

.emergency-toggle {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(180, 35, 24, 0.16);
    color: #ffffff;
    border-radius: 16px;
    padding: 13px 14px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.emergency-toggle:hover {
    background: rgba(180, 35, 24, 0.26);
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.emergency-toggle span {
    display: block;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.emergency-toggle small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.25;
}

.emergency-box {
    display: none;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    padding: 12px;
}

.emergency-widget.is-open .emergency-box {
    display: block;
}

.emergency-box label {
    display: block;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 7px;
}

.emergency-box textarea {
    width: 100%;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 12px;
    padding: 10px;
    resize: vertical;
    min-height: 90px;
    font-size: 13px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.94);
    color: #10241c;
    outline: none;
}

.emergency-box textarea:focus {
    border-color: #8bd450;
    box-shadow: 0 0 0 3px rgba(139, 212, 80, 0.18);
}

.emergency-send {
    width: 100%;
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background: #b42318;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    padding: 10px 12px;
    cursor: pointer;
    font-family: inherit;
}

.emergency-send:hover {
    filter: brightness(0.96);
}

.emergency-note {
    margin: 8px 0 0;
    font-size: 11px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 768px) {
    .emergency-widget {
        margin-top: 10px;
    }

    .emergency-box textarea {
        min-height: 110px;
    }
}