/* ================================================
   FORMS.CSS - Estilos centralizados
   Encarga.app
   ================================================ */

/* ================================================
   TABLAS ESTANDAR
   Clases: cellHead, cellHead2, cellInfo, cellBorder
   ================================================ */

/* Border-collapse para tablas con clases propias */
table:has(.cellHead),
table:has(.cellInfo) {
    border-collapse: collapse;
    width: 100%;
}

/* --- CABECERA PRINCIPAL (verde) --- */
.cellHead {
    background-color: #62B441 !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    padding: 8px 10px !important;
    text-align: left !important;
    border: none !important;
    border-bottom: 2px solid #4fa832 !important;
    border-right: 1px solid rgba(255,255,255,0.15) !important;
    white-space: nowrap;
    vertical-align: middle !important;
    letter-spacing: 0.2px;
}

.cellHead:last-child {
    border-right: none !important;
}

/* Columnas centradas (ej. #, opciones, fechas) */
.cellHead.center,
th.cellHead[align="center"],
td.cellHead[align="center"] {
    text-align: center !important;
}

/* --- CABECERA SECUNDARIA (azul) --- */
.cellHead2 {
    background-color: #0172B5 !important;
    background-image: none !important;
    filter: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    padding: 8px 10px !important;
    text-align: left !important;
    border: none !important;
    border-bottom: 2px solid #015a91 !important;
    border-radius: 0 !important;
    vertical-align: middle !important;
    white-space: nowrap;
}

/* --- CELDA DE DATOS --- */
.cellInfo {
    padding: 6px 10px !important;
    font-size: 12px !important;
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    background-color: #fff;
    vertical-align: middle !important;
}

/* Filas alternadas */
tr:nth-child(even) .cellInfo {
    background-color: #fafafa;
}

/* Hover de fila */
tr:hover .cellInfo {
    background-color: #f0f8eb !important;
    transition: background-color 0.12s;
}

/* Celda con borde (inputs dentro de tabla) */
.cellBorder {
    padding: 6px 8px !important;
    border: 1px solid #e0e0e0 !important;
    background-color: #fff;
    vertical-align: middle !important;
}

/* --- TABLA CONTENEDOR (para tablas con borde exterior) --- */
.tableInfo {
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px;
    overflow: hidden;
    border-collapse: collapse !important;
}

.tableInfo td {
    border: 1px solid #eee !important;
    padding: 5px 8px !important;
    font-size: 12px !important;
}

/* --- TABLA GRIS (para grillas compactas) --- */
.tableGray td {
    border: 1px solid #e5e5e5 !important;
    font-size: 11px !important;
    padding: 4px 8px !important;
    background-color: #fafafa;
}

/* --- COLUMNA DE OPCIONES / ACCIONES --- */
td.cellInfo .fa-edit,
td.cellInfo .fas.fa-edit {
    font-size: 15px !important;
    color: #3559af !important;
}

td.cellInfo .fa-toggle-on,
td.cellInfo .fas.fa-toggle-on {
    font-size: 17px !important;
    color: #2ecc71 !important;
}

td.cellInfo .fa-toggle-off,
td.cellInfo .fas.fa-toggle-off {
    font-size: 17px !important;
    color: #ccc !important;
}

td.cellInfo .fa-trash-alt,
td.cellInfo .fas.fa-trash-alt {
    font-size: 15px !important;
    color: #e74c3c !important;
}

/* Iconos dentro de cellInfo (visualizacion de docs) */
.cellInfo .fas,
.cellInfo .far,
.cellInfo .fi-magnifying-glass {
    font-size: 15px !important;
    color: #3559af !important;
    margin: 0 2px;
}

/* --- FILA DE TOTALES --- */
tr tfoot .cellHead,
tfoot tr .cellHead {
    background-color: #4d8c2f !important;
    border-top: 2px solid #3a6b24 !important;
}

/* --- LINK EN CABECERA --- */
.linkHead {
    color: rgba(255,255,255,0.85) !important;
    text-decoration: underline !important;
}

.linkHead:hover {
    color: #fff !important;
}

/* --- TABLA SIN BORDES (solo separadores horizontales) --- */
.table-clean .cellInfo {
    border-right: none !important;
}

/* --- BADGE DE ESTADO dentro de celda --- */
.cellInfo .badge-activo {
    background: #d4edda;
    color: #155724;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
}

.cellInfo .badge-inactivo {
    background: #f8d7da;
    color: #721c24;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
}

/* ================================================
   FORMULARIOS - Vista / Edicion
   ================================================ */

/* --- HEADER DE VISTA --- */
.vista-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-left: 4px solid #62B441;
    padding: 10px 16px;
    margin-bottom: 16px;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.vista-header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

/* Boton principal (Actualizar/Insertar) */
.vista-header-actions .fg-button:first-child {
    background: #62B441;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 22px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s;
}

.vista-header-actions .fg-button:first-child:hover {
    background: #4fa832;
}

.vista-header-actions .fg-button {
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s;
    border: 1px solid #ddd;
    background: #f5f5f5;
    color: #555;
}

.vista-header-actions .fg-button:hover {
    background: #ebebeb;
}

.vista-header h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #333;
}

/* --- LAYOUT DOS COLUMNAS --- */
.vista-layout {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.vista-sidebar {
    width: 210px;
    flex-shrink: 0;
    position: sticky;
    top: 14px;
}

.vista-main {
    flex: 1;
    min-width: 0;
}

/* --- FOTO CARD --- */
.foto-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    text-align: center;
}

.foto-card .foto-img {
    padding: 12px 12px 6px;
}

.foto-card .foto-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    border-radius: 6px;
    display: block;
}

.foto-card .foto-nombre {
    font-weight: 700;
    font-size: 12px;
    color: #444;
    padding: 6px 10px;
    background: #f8f8f8;
    border-top: 1px solid #eee;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.foto-card .foto-upload {
    padding: 8px 10px 4px;
}

.foto-card .foto-upload label.btn-upload {
    display: block;
    background: #f5f5f5;
    border: 1px dashed #ccc;
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 11px;
    color: #777;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0;
}

.foto-card .foto-upload label.btn-upload:hover {
    border-color: #62B441;
    color: #62B441;
    background: #f0f8eb;
}

.foto-card .foto-upload input[type=file] {
    display: none;
}

.foto-card .foto-actions {
    padding: 6px 10px 10px;
}

/* --- TABS MODERNOS (override jQuery UI) --- */
#tabs.ui-tabs {
    background: transparent;
    border: none;
    padding: 0;
    font-family: inherit;
}

#tabs .ui-tabs-nav {
    background: #f4f4f4;
    border: 1px solid #e0e0e0;
    border-bottom: 2px solid #62B441;
    border-radius: 8px 8px 0 0;
    padding: 8px 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 0;
}

#tabs .ui-tabs-nav li {
    background: transparent !important;
    border: 1px solid transparent !important;
    border-bottom: none !important;
    border-radius: 6px 6px 0 0;
    margin: 0;
    top: 0;
}

#tabs .ui-tabs-nav li a {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    padding: 6px 12px;
    border-radius: 5px 5px 0 0;
    text-decoration: none;
    display: block;
    transition: all 0.18s;
    white-space: nowrap;
    line-height: 1.4;
}

#tabs .ui-tabs-nav li:not(.ui-tabs-active) a:hover {
    color: #62B441;
    background: rgba(98,180,65,0.1);
}

#tabs .ui-tabs-nav li.ui-tabs-active {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-bottom: 2px solid #fff !important;
    margin-bottom: -2px !important;
}

#tabs .ui-tabs-nav li.ui-tabs-active a {
    color: #62B441;
    font-weight: 700;
}

#tabs .ui-tabs-panel {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 18px 16px;
    min-height: 250px;
}

/* --- FIELDSET / PANEL --- */
.fieldset {
    background: #fff !important;
    border: 1px solid #eaeaea !important;
    border-radius: 8px !important;
    padding: 14px 18px !important;
    margin-bottom: 14px !important;
    box-shadow: none !important;
}

.fieldset h2 {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #62B441 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    margin: 0 0 10px 0 !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

/* --- LABELS Y CAMPOS --- */
.tdLabel {
    padding: 7px 12px !important;
    font-weight: 600 !important;
    font-size: 11px !important;
    color: #555 !important;
    text-align: right !important;
    background: #f9f9f9 !important;
    background-image: none !important;
    filter: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    border-right: 1px solid #ebebeb !important;
    border-top: none !important;
    border-left: none !important;
    vertical-align: middle !important;
    white-space: nowrap;
    width: 22%;
}

.inputForm {
    border: 1px solid #d8d8d8 !important;
    border-radius: 5px !important;
    padding: 4px 8px !important;
    font-size: 12px !important;
    font-family: inherit !important;
    color: #333 !important;
    background: #fff !important;
    transition: border-color 0.18s, box-shadow 0.18s !important;
}

.inputForm:focus {
    border-color: #62B441 !important;
    box-shadow: 0 0 0 2px rgba(98,180,65,0.15) !important;
    outline: none !important;
}

select.inputForm {
    padding: 3px 6px !important;
}

/* --- BARRA DE ACCIONES (fija al fondo) --- */
.vista-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 2px solid #62B441;
    padding: 10px 16px;
    margin-top: 16px;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.07);
    z-index: 90;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Boton guardado principal */
.vista-footer .fg-button:first-child {
    background: #62B441;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 22px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s;
}

.vista-footer .fg-button:first-child:hover {
    background: #4fa832;
}

.vista-footer .fg-button {
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s;
    border: 1px solid #ddd;
    background: #f5f5f5;
    color: #555;
}

.vista-footer .fg-button:hover {
    background: #ebebeb;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .vista-layout {
        flex-direction: column;
    }
    .vista-sidebar {
        width: 100%;
        position: static;
    }
    #tabs .ui-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .vista-footer {
        flex-wrap: wrap;
    }
}

/* --- DOCS SST (acordeon) --- */
.docsGeneral {
    font-family: system-ui, sans-serif;
}

.docGeneral {
    padding: 14px 18px;
    margin-top: 10px;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    position: relative;
}

.docGeneral::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.docGeneral.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.docGeneral:hover {
    background: linear-gradient(135deg, #1565c0, #1e88e5);
}

.docsGeneral > div[id^="docs"] {
    display: none;
    background: #e3f2fd;
    border-radius: 0 0 6px 6px;
    padding: 10px;
}

/* --- FOTO VEHICULO (landscape) --- */
.foto-card.vehiculo .foto-img img {
    height: 160px;
    object-position: center center;
}
.foto-placeholder {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 48px;
    background: #f8f8f8;
}

/* --- VIGENCIAS SIDEBAR --- */
.vigencias-sidebar {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vigencia-badge {
    border-radius: 0 8px 8px 0;
    padding: 10px 12px 10px 13px;
    border: 1px solid transparent;
    border-left: 4px solid;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    position: relative;
}
.vigencia-ok {
    background: #f6fff8;
    border-color: #c3e6cb;
    border-left-color: #27ae60;
}
.vigencia-ko {
    background: #fff6f6;
    border-color: #f5c6c6;
    border-left-color: #e74c3c;
}
.vigencia-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}
.vigencia-estado {
    font-size: 12px;
    font-weight: 700;
    margin-top: 4px;
}
.vigencia-ok .vigencia-estado { color: #1e8449; }
.vigencia-ko .vigencia-estado { color: #c0392b; }
.vigencia-fecha {
    font-size: 10px;
    color: #aaa;
    margin-top: 3px;
    font-family: monospace;
    letter-spacing: 0.3px;
}
.vigencia-fecha i { font-size: 9px; }
.vdot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.vigencia-ok .vdot {
    background: #27ae60;
    box-shadow: 0 0 0 2px rgba(39,174,96,0.2);
}
.vigencia-ko .vdot {
    background: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231,76,60,0.2);
}

/* ================================================
   BOTONES ESTANDAR - reutilizables en todos los modulos
   Uso: <a href="..." class="btn-new"> o <a href="..." class="btn-export">
   ================================================ */

.list-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

/* Base compartida */
.btn-new,
.btn-export,
.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    white-space: nowrap;
    line-height: 1;
    transition: background 0.18s, box-shadow 0.18s, transform 0.1s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.10);
}
.btn-new:active,
.btn-export:active,
.btn-pdf:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.10);
}

/* Boton principal: Agregar */
.btn-new {
    background: #62B441;
    color: #fff !important;
    border-bottom: 2px solid #4a9430;
}
.btn-new:hover {
    background: #52a035;
    box-shadow: 0 4px 10px rgba(98,180,65,0.35);
    color: #fff !important;
}
.btn-new i { font-size: 11px; }

/* Boton secundario: Exportar Excel */
.btn-export {
    background: #fff;
    color: #1d6f3a !important;
    border: 1px solid #c3e6cb;
    border-bottom: 2px solid #a3d1a8;
}
.btn-export:hover {
    background: #f0fff4;
    border-color: #1d6f3a;
    box-shadow: 0 4px 10px rgba(29,111,58,0.15);
    color: #1d6f3a !important;
}
.btn-export i {
    font-size: 13px;
    color: #1d7a3a;
}

/* Boton PDF */
.btn-pdf {
    background: #fff;
    color: #c0392b !important;
    border: 1px solid #f5c6c6;
    border-bottom: 2px solid #e8a0a0;
}
.btn-pdf:hover {
    background: #fff6f6;
    border-color: #c0392b;
    box-shadow: 0 4px 10px rgba(192,57,43,0.15);
    color: #c0392b !important;
}
.btn-pdf i {
    font-size: 13px;
    color: #c0392b;
}

/* --- LISTADO: ICONOS DE ACCION --- */
.td-acciones {
    text-align: center !important;
    white-space: nowrap;
    padding: 5px 8px !important;
}
.btn-accion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 5px;
    text-decoration: none !important;
    transition: background 0.15s, color 0.15s;
    font-size: 12px;
}
.btn-editar {
    color: #0172B5;
    background: #e8f4fd;
    border: 1px solid #b3d9f0;
    margin-right: 4px;
}
.btn-editar:hover { background: #0172B5; color: #fff; }
.btn-toggle {
    font-size: 18px;
    cursor: pointer;
    vertical-align: middle;
    transition: color 0.15s;
}
.toggle-on  { color: #27ae60; }
.toggle-off { color: #ccc; }
.toggle-on:hover  { color: #1e8449; }
.toggle-off:hover { color: #aaa; }

/* --- VIGENCIAS: colores de estado por dias restantes --- */
/* Uso: <td class="cellInfo vig-vencida"> en tablas de vigencias */
.cellInfo.vig-vencida  { background-color: #900 !important;    color: #fff !important; font-weight: 700 !important; }
.cellInfo.vig-critica  { background-color: #e67e22 !important; color: #fff !important; font-weight: 700 !important; }
.cellInfo.vig-alerta   { background-color: #f1c40f !important; color: #333 !important; font-weight: 600 !important; }
.cellInfo.vig-proxima  { background-color: #2ecc71 !important; color: #333 !important; }

/* --- CAMPO TOTAL DEVENGADO --- */
#valDevengado {
    border: 1px solid #2ecc71 !important;
    background-color: rgba(46, 204, 113, 0.1) !important;
}

/* ================================================
   TABLA ESTÁNDAR (.table-std)
   Uso: <table class="table-std"> o <table class="table-std" id="tableRutas">
   ================================================ */
.table-std {
    border-collapse: collapse;
    font-size: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 8px;
}
.table-std thead th {
    background: #2c3e50;
    color: #fff;
    padding: 8px 14px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid #243342;
    white-space: nowrap;
}
.table-std tbody td {
    padding: 6px 12px;
    border: 1px solid #e9ecef;
    vertical-align: middle;
    white-space: nowrap;
}
.table-std tbody tr:hover td { filter: brightness(0.94); }

/* Celda label (primera columna identificadora) */
.table-std .td-label {
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.3px;
    color: #2c3e50;
    background: #f8f9fa;
}

/* Fila de totales */
.table-std .tr-total td {
    background: #2c3e50 !important;
    color: #ecf0f1 !important;
    font-weight: 700;
    border-color: #243342;
}
.table-std .tr-total .td-label {
    color: #fff !important;
    background: #1a252f !important;
    font-size: 12px;
    letter-spacing: 1px;
}

/* --- Indicadores de color en cabeceras (border-bottom) --- */
.table-std thead .th-teal    { border-bottom: 3px solid #1abc9c; }
.table-std thead .th-green   { border-bottom: 3px solid #2ecc71; }
.table-std thead .th-blue    { border-bottom: 3px solid #3498db; }
.table-std thead .th-purple  { border-bottom: 3px solid #9b59b6; }
.table-std thead .th-yellow  { border-bottom: 3px solid #f1c40f; }
.table-std thead .th-orange  { border-bottom: 3px solid #e67e22; }
.table-std thead .th-red     { border-bottom: 3px solid #e74c3c; }
.table-std thead .th-primary { border-bottom: 3px solid #62B441; }

/* --- Columnas con fondo de color (datos) --- */
.table-std .col-teal    { background: rgba(26, 188, 156, 0.10); text-align: center; }
.table-std .col-green   { background: rgba(46, 204, 113, 0.10); text-align: center; }
.table-std .col-blue    { background: rgba(52, 152, 219, 0.10); text-align: center; }
.table-std .col-purple  { background: rgba(155, 89, 182, 0.10); text-align: center; }
.table-std .col-yellow  { background: rgba(241, 196, 15,  0.10); text-align: center; }
.table-std .col-orange  { background: rgba(230, 126, 34, 0.10); text-align: center; }
.table-std .col-red     { background: rgba(231, 76,  60, 0.10); text-align: center; }
.table-std .col-primary { background: rgba(98,  180, 65, 0.12); text-align: center; font-weight: 700; }
.table-std .col-total   { background: rgba(98,  180, 65, 0.12); text-align: center; font-weight: 700; }
.table-std .col-valor   { background: rgba(98,  180, 65, 0.12); text-align: right;  font-weight: 700; }

/* --- Variante compacta para tablas de arrastre --- */
.table-compact {
    font-size: 11px;
    width: auto;
}
.table-compact thead th,
.table-compact tbody td {
    padding: 3px 8px;
    white-space: nowrap;
}
.table-compact tbody tr { cursor: grab; }
.table-compact tbody tr:active { cursor: grabbing; }
.table-compact tbody tr:hover td {
    background: #62B441 !important;
    color: #fff !important;
}

/* Columnas ocultables con .tableHidden */
.tableHidden .hideCol { display: none; }

/* ================================================
   ORDEN DE CARGUE — layout y drop zones
   ================================================ */
.rutas-layout {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 12px;
}

/* Tabla fuente — sticky para que no se pierda al hacer scroll */
.rutas-source {
    flex-shrink: 0;
    position: sticky;
    top: 8px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

/* Grid de camiones */
.camiones-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

/* Placeholder visible al arrastrar */
tr.drag-placeholder td {
    background: rgba(98, 180, 65, 0.15) !important;
    border: 2px dashed #62B441 !important;
    height: 28px;
}

/* Drop zones: ready (cualquier camion) y active (sobre este) */
.camion.drop-ready {
    outline: 2px dashed rgba(98, 180, 65, 0.35);
    border-radius: 6px;
}
.camion.drag-over {
    outline: 3px solid #62B441;
    box-shadow: 0 0 14px rgba(98, 180, 65, 0.45);
    border-radius: 6px;
    transform: scale(1.02);
    transition: transform 0.1s;
}

