/* Estilos modernos para los controles del mapa GPS */
.gps-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    background: #f7f7fa;
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    min-height: unset;
}
.gps-controls label {
    margin-right: 4px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}
.gps-controls input[type="text"],
.gps-controls input[type="datetime-local"],
.gps-controls input[type="number"] {
    border: 1px solid #cfd8dc;
    border-radius: 4px;
    padding: 2px 6px;
    min-width: 110px;
    margin-right: 6px;
    font-size: 14px;
    height: 28px;
}
.gps-controls input[type="checkbox"] {
    margin-left: 6px;
    margin-right: 2px;
    transform: scale(0.9);
}
.gps-controls button {
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 14px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.18s;
    height: 30px;
}
.gps-controls button:hover {
    background: #1258a7;
}
