/* ============================= */
/*         Global Styles       */
/* ============================= */
body {
    font-family: 'Geologica', sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 12px;
    position: relative; /* Añadido */
    padding-bottom: 20px; /* Ajusta según la altura de tu footer */
}
main {
    display: flex;
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;  /*Ajusta este valor según la altura de tu topbar */
    margin-bottom: 40px; /* Añadir margen inferior para evitar que el contenido se oculte detrás del footer */

}
#ros {
    margin: auto; 
    padding: auto; 
    max-width: 10%; 
    max-height: 10%;
}

/* ============================= */
/*         Header Styles       */
/* ============================= */
header {
    background-color: #000;
    color: #fff;
    padding: 5PX;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 1.5em;
}

/* ============================= */
/*    Topbar & Navigation      */
/* ============================= */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    position: fixed; /* Añadido */
    top: 0;         /* Añadido */
    left: 0;        /* Añadido */
    right: 0;       /* Añadido */
    width: 100%;    /* Añadido */
    z-index: 1001;  /* Añadido */
}
.topbar-header {
    flex: 0 0 30%;
}
.topbar-nav {
    flex: 0 0 60%;
}
#menu-toggle {
    display: none; /* Ocultar botón en pantallas grandes */
    background: #000;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    position: absolute;
    left: 0;
    z-index: 0;
}
nav {
    background-color: #000;
    padding: 5px;
    text-align: center;
    position: relative;
    z-index: 1;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Menú horizontal por defecto */
    justify-content: center;
    gap: 15px; /* Espaciado entre los enlaces */
}
nav ul li {
    margin: 0;
}
nav ul li a,
nav ul li span {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
nav ul li a {
    font-size: 1.5em;
}
nav ul li span {
    font-size: 1.2em;
}
nav ul li:hover,
nav ul li a:hover {
    color: #ffed00; /* Color al pasar el mouse */
}

/* ============================= */
/*      Main Content Area      */
/* ============================= */
main {
    margin-top: 40px;
    display: flex;
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
}
.App-menu {
    background-color: #ffffff;
    padding: 10px;
    /*border-right: 1px solid #000000;
    display: flex;
    flex-direction: column;*/
    width: 30%;
    box-sizing: border-box;
    font-size: 12px;
}
.App-menu h2 {
    align-self: center;
}
.App-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    width: 70%;
    box-sizing: border-box;
    font-size: 12px;
}

/* ============================= */
/*         Input Groups        */
/* ============================= */
.input-group {
    display: flex;
    align-self: center;
    margin: auto;
    padding: auto;
    font-size: 12px;
}
.input-group h3,
.input-group h2 {
    margin-right: 5px;
    font-size: 14px;
}

/* ============================= */
/*        Route Display        */
/* ============================= */
.route-display {
    margin: 5px;
    text-align: left;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: auto;
    max-height: 50vh;
    overflow-y: auto;
    font-size: 12px;
}
.route-header {
    padding: 5px;
    display: flex;
    flex-direction: column;
    margin-top: 1vh;
    width: 100%;
    box-sizing: border-box;
    font-size: 10px;
}
.route-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: auto;
    font-size: 10px;
}
.route-group button {
    margin: 5px;
    padding: 5px;
    max-width: 200px;
}
.route-content {
    padding: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    font-size: 10px;
    max-height: 70vh;
    overflow-y: auto;
}

/* ============================= */
/*         Footer Styles       */
/* ============================= */
footer {
	margin: 0;
	padding: 0;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 0.9em;
    position: fixed; /* Cambiado a fixed */
    bottom: 0; /* Pegarlo al fondo */
    left: 0;
    right: 0;
    /*width: 100%;*/
    z-index: 1000; /* Asegurar que esté por encima del contenido */
}

/* ============================= */
/*     Form & Input Elements   */
/* ============================= */
.location-input {
    margin: 10px 0;
    font-size: 12px;
}
.form-group {
    margin: 5px;
    padding: 5px;
    font-size: 12px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: black;
    font-size: 12px;
}
.form-group select,
.form-group input {
    width: 90%;
    padding: 5px;
    border: 1px solid #000000;
    border-radius: 5px;
    background-color: #ffffff;
    font-size: 12px;
}
input {
    border: 1px solid #000000;
    border-radius: 5px;
    color: black;
    padding: 5px;
    margin: 5px;
    font-family: 'Geologica', sans-serif;
}

/* ============================= */
/*        Button Styles        */
/* ============================= */
button {
    margin: 5px 0;
    padding: 5px 5px;
    background-color: #000000;
    color: white;
    cursor: pointer;
    border-radius: 15px;
    transition: background-color 0.3s ease;
    width: 100%;
    align-self: center;
    font-family: 'Geologica', sans-serif;
}
button:hover {
    background-color: #ffed00;
    color: black;
}

/* ============================= */
/*     Card & Truck Containers */
/* ============================= */
.card {
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 5px;
    margin: 5px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    font-size: 12px;
}
.card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.card h4 {
    margin-top: 0;
    font-size: 1.2em;
}
.card button {
    margin-top: 5px;
    padding: 5px 5px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#trucks {
    margin: 5px 0;
    padding: 5px;
    font-size: 12px;
    border: 1px solid #000000;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-height: 100px;
    overflow-y: auto;
    width: 100%;
}

/* ============================= */
/*         Map Styles          */
/* ============================= */
#map {
    flex: 1;
    min-height: 300px;
    width: 100%;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 12px;
}

/* ============================= */
/*       Miscellaneous         */
/* ============================= */
#loading img {
    width: 60%;
    height: 40%;
}
#document-numbers {
    word-wrap: break-word;
    height: 20px;
    width: 100%;
}
.form-segment {
    padding: 10px;
    font-size: 12px;
}
.form-add-truck {
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    font-size: 12px;
}
.message {
    color: #fde000;
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: #ffffff;
    font-size: 0.875rem;
}
.login-container {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    width: 90%;
    max-width: 40vh;
    transition: transform 0.2s;
    margin: 5% auto;
}
.login-container:hover {
    transform: translateY(-5px);
}
.p-group {
    display: flex;
    align-self: center;
    font-size: 12px;
}
.p-group h5 {
    margin-right: 20px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.info-grid div {
    padding: 5px;
}
.route-info {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

/* ============================= */
/*         Table Styles        */
/* ============================= */
.table-container {
    margin-top: 20px;
    overflow-x: auto;
    max-height: 80vh; /* Altura máxima del contenedor ajustable a la pantalla */
    overflow-y: auto;
    border-radius: 5px;
    margin: 0;
    font-size: 12px; /* Tamaño de fuente uniforme */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000000;
    margin: 0;
    background-color: white;
    /*box-shadow: 0 1px 3px rgba(0,0,0,0.2);*/
}
th, td {
    padding: 5px;
    text-align: left;
    border: 1px solid #000000;
    border-bottom: 1px solid #ffffff;
}
th {
    background-color: #000000;
    color: white;
    font-size: 12px;
    border: 1px solid #000000;
}
td {
    font-size: 12px;
    border: 1px solid #000000;
    padding: 2px;
}
select {
    width: 90%;
    padding: 5px;
    margin: 5px;
    border: 1px solid #000000;
    border-radius: 5px;
    background-color: #ffffff;
    font-size: 12px;
}

/* ============================= */
/*        Modal Styles         */
/* ============================= */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.modal-content {
    background-color: #ffffff;
    margin: auto;
    margin-top: 3%;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 10px;
    width: 85%;
    height: 83%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    overflow-y: auto;
    font-size: 12px;
}
.modal-group {
    display: flex;
    font-size: 12px;
}

/* ============================= */
/*  Sellers & Documents Blocks  */
/* ============================= */
.sellers-container {
    margin: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
    max-height: 100px;
    overflow-y: auto;
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 5px;
    background-color: #ffffff;
    font-size: 8px;
}
.documents-container {
    margin: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 5px;
    background-color: #ffffff;
    font-size: 12px;
}

/* ============================= */
/*      Checkbox & Close Btn     */
/* ============================= */
.checkbox-container {
    display: flex;
    align-items: center;
}
.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}
.close,
.exit,
.cerrar,
.close_modal {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000000;
}
.close:hover,
.exit:hover,
.cerrar:hover,
.close_modal:hover {
    color: #000000;
}

/* ============================= */
/*     Maps Points Overrides   */
/* ============================= */
.gm-style .gmnoprint {
    font-size: 12px !important;
    padding: 5px 10px !important;
}
.gm-style .gm-style-mtc {
    top: 10px !important;
    right: 10px !important;
}
.gm-style .gm-style-mtc button {
    width: auto !important;
    height: auto !important;
    min-width: 60px !important;
    min-height: 30px !important;
    padding: 5px 10px !important;
}

/* ============================= */
/*     Notification Elements   */
/* ============================= */
#notification-icon {
    display: none; /* Ocultar el icono por defecto */
    position: fixed;
    align-content: center; 
    bottom:8%; 
    right: 2%; 
    cursor: pointer; 
    z-index: 1000; 
    background: #000;
    /*border: #000 5px solid;*/
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    border-radius: 25%; 
    padding: 5px;
}
#notification-modal {
    position: fixed; 
    bottom: 15%; 
    right: 2%; 
    height: 80%;
    width: 80%; 
    max-width: 400px;
    max-height: 400px; 
    overflow-y: auto; 
    background: white; 
    border: 1px solid #ccc; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    display: none; 
    z-index: 1000; 
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
}

/* ============================= */
/*         Responsive          */
/* ============================= */
/* Ajustes para pantallas pequeñas (móviles) */
@media screen and (max-width: 768px) {
    /* Mobile layout adjustments */
    body {
        font-size: 16px; /* Tamaño base de fuente para móvil */
    }
    
    /* Ajustamos otros elementos para mantener la proporción */
    .App-menu,
    .App-content,
    .form-group,
    .form-group label,
    .form-group select,
    .form-group input,
    .card,
    table td,
    .documents-container,
    .modal-content,
    .modal-group,
    #notification-modal,
    .table-container,
    #trucks,
    button,
    select,
    input {
        font-size: 16px;
    }
    /* Ajustamos específicamente los elementos que tenían tamaños más pequeños */
    .route-header,
    .route-group,
    .route-content {
        font-size: 16px;
    }
    .App-menu {
        width: 100%;
        padding: 10px;
        margin: 20px 0 0 0;
        font-size: 12px;
    }
    .App-content {
        width: 100%;
        padding: 10px;
        margin: 0;
        font-size: 12px;
        order: 2;
    }
    #map {
        height: calc(50vh - 60px);
        min-height: 300px;
        font-size: 12px;
    }
    .App-menu {
        order: 1;
    }
    main {
        display: flex;
        flex: 1;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 40px;  /*Ajusta este valor según la altura de tu topbar */
        margin-bottom: 40px; /* Añadir margen inferior para evitar que el contenido se oculte detrás del footer */
    }
    #menu-toggle {
        /*background-color: #fde000;
        color: #000;*/
        display: block;
        position: relative;
        margin-left: auto;
        font-size: 2.0em;
    }
    nav {
        position: static; /* Cambiamos a static */
        width: 100%; /* Aseguramos que nav ocupe todo el ancho */
    }
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #000;
        color: #fff;
        position: fixed; /* Cambiamos a fixed */
        top: 55px; /* Ajusta este valor según la altura de tu header */
        left: 0;
        right: 0;
        width: 100%;
        padding: 10px 0;
        z-index: 1000;
	    border-bottom-left-radius: 10px;
	    border-bottom-right-radius: 10px;
    }
    nav ul li {
        margin: 0;
        padding: 12px 20px;
        border-bottom: 1px solid #333;
        transition: all 0.3s ease; /* Agregamos transición suave */
    }
    nav ul li:hover {
        background-color: #ffed00; /* Color de fondo al hover */
    }
    nav ul li:hover a {
        color: #000; /* Color del texto al hover */
    }
    nav ul li:last-child {
        border-bottom: none; /* Quitamos el borde del último elemento */
    }
    nav ul li a {
        color: #fff;
        display: block;
        font-size: 1.2em;
        transition: all 0.3s ease; /* Transición suave también para el texto */
    }
    nav ul.show {
        display: flex; /* Aseguramos que se muestre cuando tenga la clase show */
    }
    table {
        border: 0;
    }
    table thead {
        display: none;
    }
    table tr {
        margin-bottom: 1rem;
        display: block;
        border: 1px solid #000;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    table td {
        display: block;
        text-align: right;
        font-size: 16px;
        border-bottom: 1px solid #000;
        position: relative;
        padding-left: 40%;
        padding-right: 5%;
    }
    table td:before {
        content: attr(data-label);
        position: absolute;
        left: 5px;
        width: 45%;
        padding-right: 10px;
        text-align: left;
        font-weight: bold;
        color: black;
    }
    table td:last-child {
        border-bottom: 0;
    }
    table td button {
        width: auto;
        margin: 5px;
    }
    table td input {
        width: 100%;
        margin: 0;
    }
    .modal-content {
        /*width: 89%;
        height: 81%;*/
        margin: 20% auto;
        font-size: 12px;
    }
    .login-container {
        padding: 1.5rem;
        max-width: 75%;
        margin-top: 10%;
    }
    .topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /*background-color: #fde000;*/
        position: fixed; /* Cambiar a fixed */
        top: 0; /* Pegarlo al tope */
        left: 0; /* Alinear a la izquierda */
        right: 0; /* Alinear a la derecha */
        width: 100%; /* Asegurar que ocupe todo el ancho */
        z-index: 1001; /* Valor mayor que otros elementos para que esté siempre visible */
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
    }
    .topbar-header{
        /*background-color: #fde000;*/
        flex: 0 0 auto;
        width: 20%; /* Cambiamos de 97.5% a auto */
    }
    .topbar-nav {
        /*background-color: #fde000;*/
        flex: 0 0 auto;
        width: 20%; /* Cambiamos de 97.5% a auto */
	    border-bottom-right-radius: 10px;
    }
    #ros {
        margin: 0; /* Ajustamos margen */
        padding: 0;
        max-width: 80px; /* Tamaño fijo en lugar de porcentaje */
        max-height: 40px; /* Tamaño fijo en lugar de porcentaje */
    }
    #editstatusimg {
        margin: auto; 
        padding: auto; 
        max-width: 50%; 
        max-height: 50%;
        margin-left: 25%;
    }
    .route-header {
        margin-top: 25px;
        padding: 10px;
        text-align: center;
    }
    .route-group {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    table {
        table-layout: auto;
        width: 100%;
    }
    table colgroup col {
        width: auto !important;
    }
    #editstatusimg {
        margin-left: 25%;
    }
    footer{
	display: none;
    }
    .input-group {
        display: block;
    }
    #trucks{
        margin: 0;
        padding: 0;
    }
}

/* Ajustes para pantallas medianas (tablets) */
@media screen and (max-width: 1024px) and (min-width: 768px) {
    /* Mobile layout adjustments */
    body {
        font-size: 16px; /* Tamaño base de fuente para móvil */
    }
    
    /* Ajustamos otros elementos para mantener la proporción */
    .App-menu,
    .App-content,
    .form-group,
    .form-group label,
    .form-group select,
    .form-group input,
    .card,
    table td,
    .documents-container,
    .modal-content,
    .modal-group,
    #notification-modal,
    .table-container,
    #trucks,
    button,
    select,
    input {
        font-size: 16px;
    }
    /* Ajustamos específicamente los elementos que tenían tamaños más pequeños */
    .route-header,
    .route-group,
    .route-content {
        font-size: 16px;
    }
    .App-menu {
        width: 100%;
        padding: 10px;
        margin: 20px 0 0 0;
        font-size: 12px;
    }
    .App-content {
        width: 100%;
        padding: 10px;
        margin: 0;
        font-size: 12px;
        order: 2;
    }
    #map {
        height: calc(50vh - 60px);
        min-height: 300px;
        font-size: 12px;
    }
    .App-menu {
        order: 1;
    }
    main {
        display: flex;
        flex: 1;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 40px;  /*Ajusta este valor según la altura de tu topbar */
        margin-bottom: 40px; /* Añadir margen inferior para evitar que el contenido se oculte detrás del footer */
    }
    #menu-toggle {
        /*background-color: #fde000;
        color: #000;*/
        display: block;
        position: relative;
        margin-left: auto;
        font-size: 2.0em;
    }
    nav {
        position: static; /* Cambiamos a static */
        width: 100%; /* Aseguramos que nav ocupe todo el ancho */
    }
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #000;
        color: #fff;
        position: fixed; /* Cambiamos a fixed */
        top: 55px; /* Ajusta este valor según la altura de tu header */
        left: 0;
        right: 0;
        width: 100%;
        padding: 10px 0;
        z-index: 1000;
	    border-bottom-left-radius: 10px;
	    border-bottom-right-radius: 10px;
    }
    nav ul li {
        margin: 0;
        padding: 12px 20px;
        border-bottom: 1px solid #333;
        transition: all 0.3s ease; /* Agregamos transición suave */
    }
    nav ul li:hover {
        background-color: #ffed00; /* Color de fondo al hover */
    }
    nav ul li:hover a {
        color: #000; /* Color del texto al hover */
    }
    nav ul li:last-child {
        border-bottom: none; /* Quitamos el borde del último elemento */
    }
    nav ul li a {
        color: #fff;
        display: block;
        font-size: 1.2em;
        transition: all 0.3s ease; /* Transición suave también para el texto */
    }
    nav ul.show {
        display: flex; /* Aseguramos que se muestre cuando tenga la clase show */
    }
    table {
        border: 0;
    }
    table thead {
        display: none;
    }
    table tr {
        margin-bottom: 1rem;
        display: block;
        border: 1px solid #000;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    table td {
        display: block;
        text-align: right;
        font-size: 12px;
        border-bottom: 1px solid #000;
        position: relative;
        padding-left: 40%;
        padding-right: 5%;
    }
    table td:before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        width: 45%;
        padding-right: 10px;
        text-align: left;
        font-weight: bold;
        color: black;
    }
    table td:last-child {
        border-bottom: 0;
    }
    table td button {
        width: auto;
        margin: 5px;
    }
    table td input {
        width: 100%;
        margin: 0;
    }
    .modal-content {
        /*width: 89%;
        height: 81%;*/
        margin: 20% auto;
        font-size: 12px;
    }
    .login-container {
        padding: 1.5rem;
        max-width: 75%;
        margin-top: 10%;
    }
    .topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /*background-color: #fde000;*/
        position: fixed; /* Cambiar a fixed */
        top: 0; /* Pegarlo al tope */
        left: 0; /* Alinear a la izquierda */
        right: 0; /* Alinear a la derecha */
        width: 100%; /* Asegurar que ocupe todo el ancho */
        z-index: 1001; /* Valor mayor que otros elementos para que esté siempre visible */
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
    }
    .topbar-header{
        /*background-color: #fde000;*/
        flex: 0 0 auto;
        width: 20%; /* Cambiamos de 97.5% a auto */
    }
    .topbar-nav {
        /*background-color: #fde000;*/
        flex: 0 0 auto;
        width: 20%; /* Cambiamos de 97.5% a auto */
	    border-bottom-right-radius: 10px;
    }
    #ros {
        margin: 0; /* Ajustamos margen */
        padding: 0;
        max-width: 80px; /* Tamaño fijo en lugar de porcentaje */
        max-height: 40px; /* Tamaño fijo en lugar de porcentaje */
    }
    #editstatusimg {
        margin: auto; 
        padding: auto; 
        max-width: 50%; 
        max-height: 50%;
        margin-left: 25%;
    }
    .route-header {
        margin-top: 25px;
        padding: 10px;
        text-align: center;
    }
    .route-group {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    table {
        table-layout: auto;
        width: 100%;
    }
    table colgroup col {
        width: auto !important;
    }
    #editstatusimg {
        margin-left: 25%;
    }
    footer{
	display: none;
    }
    .input-group {
        display: block;
    }
    #trucks{
        margin: 0;
        padding: 0;
    }
}

/* Ajustes para pantallas grandes (escritorio) */
@media (min-width: 1367px) {
    /* Ajuste para versión de escritorio mayor */
    .route-display {
        max-height: 55vh;
        margin: 5px;
        text-align: left;
        background-color: #ffffff;
        padding: 5px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        overflow: auto;
        overflow-y: auto;
        font-size: 12px;
    }
}

/*@media (min-width: 769px) {

    #routes-table {
        table-layout: fixed;
        width: 125%;
    }
    #routes-table td input,
    #routes-table td select,
    #routes-table td input[type="date"],
    #routes-table td input[type="time"],
    #routes-table td input[type="number"],
    #routes-table td input[type="text"] {
        width: 90%;
        box-sizing: border-box;
    }
}*/
