<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

.chronoexpress-header {
    background-color: #222;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
}

    .chronoexpress-header h2 {
        margin: 0;
        font-size: 18px;
    }

.config-btn {
    background: transparent;
    border: 1px solid #666;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.main-content {
    padding: 20px;
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Resultados en la parte superior */
.results-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

.result-column {
    padding: 10px;
    border-right: 1px solid #eee;
}

    .result-column:last-child {
        border-right: none;
    }

    .result-column h3 {
        font-size: 16px;
        color: #333;
        margin-bottom: 10px;
    }

.result-value {
    font-size: 24px;
    font-weight: bold;
    color: #2196F3;
    margin-bottom: 5px;
}

.result-detail, .subtitle {
    font-size: 14px;
    color: #666;
}

/* Contenedor del mapa y panel lateral */
.content-wrapper {
    display: flex;
    flex: 1;
    gap: 20px;
}

.map-container {
    flex: 1;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}

#map {
    height: 100%;
    width: 100%;
}

/* Panel lateral */
.side-panel {
    width: 300px;
    min-width: 300px;
}

.input-section {
    background: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    height: 100%;
}

.input-group {
    margin-bottom: 15px;
}

.form-control,
.form-select {
    height: 38px;
    border: 1px solid #ddd;
}

/* Switch de viaje redondo */
.form-switch {
    padding-left: 2.5rem;
    margin: 15px 0;
}

.form-check-input {
    cursor: pointer;
}

/* Botones */
.buttons-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    padding: 8px 12px;
    border-radius: 4px;
    border: none;
    font-weight: 500;
}

.btn-primary {
    background-color: #2196F3;
}

.btn-secondary {
    background-color: #666;
}

.btn-success {
    background-color: #4CAF50;
}

/* Modal */
.modal-content {
    border-radius: 4px;
}

/* Media queries */
@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
    }

    .side-panel {
        width: 100%;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .results-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .result-column {
        border-bottom: 1px solid #eee;
    }

        .result-column:nth-last-child(-n+2) {
            border-bottom: none;
        }
}

@media (max-width: 576px) {
    .results-section {
        grid-template-columns: 1fr;
    }

    .result-column {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

        .result-column:last-child {
            border-bottom: none;
        }
}

/* Estilos para impresión */
@media print {
    .side-panel,
    .chronoexpress-header {
        display: none;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .map-container {
        height: 500px;
    }

    .results-section,
    .map-container {
        box-shadow: none;
    }
}

/* Ajustes del contenedor principal y mapa */
.content-wrapper {
    display: flex;
    gap: 20px;
    height: calc(100vh - 300px); /* Ajusta según la altura de tu header y resultados */
}

.map-container {
    flex: 1;
    min-height: 400px;
    position: relative;
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Panel lateral */
.side-panel {
    width: 300px;
    min-width: 300px;
}

/* Media queries para responsividad */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        height: auto;
    }

    .map-container {
        height: 400px; /* Altura fija para tablets */
    }

    .side-panel {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 300px; /* Altura más pequeña para móviles */
    }
}

/* Casetas */
/* Actualización de CSS para mostrar casetas de manera más discreta */
.toll-info-badge {
    display: inline-block;
    margin-left: 5px;
    background-color: #007bff;
    color: white;
    padding: 2px 6px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: bold;
    cursor: pointer;
}

    .toll-info-badge:hover {
        background-color: #0056b3;
    }

.toll-tooltip {
    position: absolute;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 10px;
    z-index: 1000;
    max-width: 250px;
    display: none;
}

    .toll-tooltip h6 {
        margin: 0 0 8px 0;
        font-size: 14px;
        font-weight: bold;
        color: #333;
        border-bottom: 1px solid #eee;
        padding-bottom: 5px;
    }

    .toll-tooltip ul {
        margin: 0;
        padding-left: 15px;
        font-size: 12px;
    }

    .toll-tooltip li {
        margin-bottom: 3px;
        display: flex;
        justify-content: space-between;
    }

.toll-tooltip-total {
    margin-top: 8px;
    font-weight: bold;
    border-top: 1px dashed #ddd;
    padding-top: 5px;
    text-align: right;
}

.toll-info-toggle {
    font-size: 12px;
    color: #007bff;
    cursor: pointer;
    display: inline-block;
    margin-top: 3px;
}

    .toll-info-toggle:hover {
        text-decoration: underline;
    }

/* Estilos para marcadores de casetas */
.caseta-marker {
    background-color: #007bff;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.caseta-info {
    padding: 8px;
}

    .caseta-info h5 {
        margin: 0 0 5px 0;
        font-size: 14px;
        font-weight: bold;
    }

    .caseta-info p {
        margin: 0;
        font-size: 12px;
    }


/* Añadir estos estilos al CSS de tu aplicación */

/* Estilos para el tooltip de casetas */
.toll-tooltip {
    display: none;
    position: absolute;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 12px;
    min-width: 250px;
    max-width: 300px;
    z-index: 1000;
    font-size: 14px;
}

    .toll-tooltip h6 {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #eee;
        padding-bottom: 5px;
    }

    .toll-tooltip ul {
        margin: 0 0 10px 0;
        padding-left: 20px;
    }

    .toll-tooltip li {
        margin-bottom: 5px;
        display: flex;
        justify-content: space-between;
    }

.toll-tooltip-total {
    font-weight: bold;
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 5px;
}

.toll-carretera {
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 3px;
    color: #0066cc;
}

.toll-info-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #0066cc;
    color: white;
    font-size: 12px;
    cursor: pointer;
    margin-left: 5px;
}

/* Estilos para ventanas de información de casetas */
.caseta-info {
    padding: 5px;
}

    .caseta-info h5 {
        margin-top: 0;
        margin-bottom: 10px;
        color: #0066cc;
    }

    .caseta-info p {
        margin: 5px 0;
    }

/* Indicador de carga */
.loading {
    position: relative;
    min-height: 100px;
}

.loading-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    font-weight: bold;
}

/* Mejoras visuales para los resultados */
.result-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0066cc;
}

.result-detail {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.subtitle {
    font-size: 0.8rem;
    color: #999;
    margin-top: 3px;
}</pre></body></html>