.btn-send {
    transition: background-color 0.2s, transform 0.1s;
}
.btn-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(25, 135, 84, 0.3);
}
.file-list {
    max-height: 150px;
    overflow-y: auto;
}
#map, #home-map {
    height: 350px;
    width: 100%;
    border-radius: 0.5rem;
    margin-top: 1rem;
    border: 1px solid #ddd;
}
#home-map {
    height: 100%;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    border: none;
}
/* Estilos para las pestañas */
.tab-button {
    padding: 0.75rem 1rem;
    font-weight: 600;
    border-bottom-width: 3px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.tab-button.active {
    border-color: #f97316; /* secondary color */
    color: #f97316;
}
.tab-button:not(.active) {
    border-color: transparent;
    color: #6b7280; /* gray-500 */
}
.tab-button:not(.active):hover {
    border-color: #d1d5db; /* gray-300 */
}
.admin-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
}
.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
/* Estilo para la tabla de choferes */
.driver-table-container {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: white;
}
.driver-table th, .driver-table td {
    padding: 0.75rem 1rem;
}
.driver-table th {
    background-color: #f3f4f6;
    color: #1f2937;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 10;
}
/* Estilo para el contenedor de la respuesta cruda */
#response-detail {
    max-height: 200px;
    overflow-y: auto;
    white-space: pre-wrap;
}
/* Estilos para la nueva consola */
#admin-console::-webkit-scrollbar { width: 4px; }
#admin-console::-webkit-scrollbar-track { background: #4a5568; }
#admin-console::-webkit-scrollbar-thumb { background: #a0aec0; }