
/* style.css: styling for Logística Inteligente app */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}
/* Al principio o dentro de body */
body {
  /* Ajusta el color de fondo de respaldo */
  background-color: #f5f5f5;

  /* Imagen de fondo */
  background-image: url("/static/fondo1.png");

  /* Centrar y cubrir toda la pantalla */


  /* Mantén la tipografía y márgenes existentes */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}
input[type="file"] {
    margin-bottom: 20px;
    padding: 6px;
}
button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}
button:hover {
    background-color: #0056b3;
}
#mensaje {
    margin-top: 20px;
    color: #007bff;
    font-weight: bold;
}
.map-container {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
}
iframe {
    border: none;
    width: 100%;
    height: 100%;
}
