.color_menu {
    background-color: black !important;
}

.brand-text {
    color: white !important;
}

.nav-link {
    color: white !important;
}

.nav-icon {
    color: white !important;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5.5rem;
    padding: 0.8125rem 0.5rem;
    overflow: hidden;
    font-size: 1.25rem;
    white-space: nowrap;
    border-bottom: 1px solid #FFC300;
    transition: width 0.3s ease-in-out;
}

.app-header {
    z-index: 1034;
    grid-area: lte-app-header;
    max-width: 100vw;
    border-bottom: 1px solid #FFC300;
    transition: 0.3s ease-in-out;
    background-color: #fff8e1 !important;
    /* Fondo dorado */
    ;
}


.d-md-inline {
    color: black !important;

}

.sidebar-brand .brand-link .brand-image {
    float: left;
    width: auto;
    max-height: 70px;
    line-height: 0.8;
}

.rastrear {
    font-size: 30px;
}

.card-title {
    display: flex;
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra verticalmente */
    width: 100%;
    height: 100%;
}

.btn-warning {
    font-size: 1.0rem;
    /* Aumenta el tamaño del texto */
    padding: 6px 40px;
    /* Aumenta el espacio interno */
    width: 50%;
    /* Hace que el botón ocupe todo el ancho del contenedor */
    max-width: 200px;
    /* Limita el ancho máximo */
    display: block;
    margin: 0 auto;
    /* Centra horizontalmente */
    height: 50px;
    /* Hace el botón más alto */
    background-color: #fff8e1;

}

.gold-icon {
    text-align: center;
    /* Centrar el ícono */
}

.gold-icon i {
    font-size: 120px;
    /* Ajusta el tamaño */
    color: #FFC300;
    /* Color dorado */

}

.logo_home {
    width: 50%;
    /* Hace que el botón ocupe todo el ancho del contenedor */

}

.lema {
    font-size: 90px;
    text-align: center;
    /* Centrar el ícono */

}

.card.card-outline {
    border-top: 3px solid #202A4E;
}

.datos_guia {
    color: #000;
}

.datos_guia_guia {
    color: #000;
    font-size: 20px;
}


.estilo_info {
    border: 1px solid #FFC300;
}

.icono_guia {
    color: #FFC300;
    /* Color dorado */
    font-size: 30px;
    margin-top: 5px;
}

.texto_boton {
    color: #000;
    font-size: 18px;
}

.diviguia {
    width: 100%;
    border: 1px solid #FFC300;
    margin: 20px 0;
}

.crearFrom {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;

}


.badgebox {
    opacity: 0;
}

.badgebox+.badge {
    text-indent: -999999px;
    width: 27px;
}

.badgebox:focus+.badge {
    box-shadow: inset 0px 0px 5px;
}

.badgebox:checked+.badge {
    text-indent: 0;
}

.badgebox {
    opacity: 0;
}

.che .badge {
    color: #000;
    background-color: #fff;
}


.form-label {
    font-weight: bold;

}

/* Estilo general de la tabla */
.dataTables_wrapper {
    font-family: "Arial", sans-serif;
    padding: 10px;
    width: 100%;
    overflow-x: auto;
}

/* Estilos para la tabla */
#tablaGuias {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Encabezados */
#tablaGuias thead {
    background: #4CAF50;
    color: white;
    text-align: left;
    font-weight: bold;
}

#tablaGuias thead th {
    padding: 12px;
    text-align: left;
}

/* Filas */
#tablaGuias tbody tr {
    border-bottom: 1px solid #ddd;
    transition: background 0.3s;
}

#tablaGuias tbody tr:hover {
    background: #f2f2f2;
}

/* Celdas */
#tablaGuias tbody td {
    padding: 10px;
    color: #333;
}

/* Botones dentro de la tabla */
#tablaGuias tbody td button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#tablaGuias tbody td button:hover {
    background: #0b7dda;
}

/* ✅ RESPONSIVIDAD TOTAL */
@media (max-width: 1200px) {
    .dataTables_wrapper {
        overflow-x: auto;
    }

    #tablaGuias {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .dataTables_wrapper {
        overflow-x: auto;
    }

    #tablaGuias {
        display: block;
        width: 100%;
        overflow-x: scroll;
    }

    #tablaGuias thead {
        display: none;
        /* Oculta encabezados en pantallas pequeñas */
    }

    #tablaGuias tbody,
    #tablaGuias tr,
    #tablaGuias td {
        display: block;
        width: 100%;
    }

    #tablaGuias tbody td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    #tablaGuias tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        text-align: left;
    }
}

#iframeMapa {
    width: 100%;
    height: 300px;
    aspect-ratio: 16 / 9;
    /* Mantiene proporción 16:9 */
    border: 0;
}


.btn-outline-warning {
    --bs-btn-color: #000;
    --bs-btn-border-color: #ffc107;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffc107;
    --bs-btn-hover-border-color: #ffc107;
    --bs-btn-focus-shadow-rgb: 255, 193, 7;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffc107;
    --bs-btn-active-border-color: #ffc107;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffc107;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffc107;
    --bs-gradient: none;
}


.btn-outline-info {
    --bs-btn-color: #000;
    --bs-btn-border-color: #0dcaf0;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #0dcaf0;
    --bs-btn-hover-border-color: #0dcaf0;
    --bs-btn-focus-shadow-rgb: 13, 202, 240;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #0dcaf0;
    --bs-btn-active-border-color: #0dcaf0;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0dcaf0;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0dcaf0;
    --bs-gradient: none;
}

.firma {
    text-align: center;

}

canvas {
    border: 2px solid #ffc107;
    width: 100%;
    max-width: 700px;
    height: 200px;
}


.timeline {
    margin-top: 15px;
    margin-left: 4px;
    max-height: 813px;
    overflow-y: auto;
    padding-right: 10px;
}