/* Fuente general */
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos de contenedor */
body {
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin-top: -110px;
}

/* Títulos y textos */
h2 {
    font-size: 1rem; /* Tamaño ajustado con Poppins */
    color: #333;
    margin-bottom: 15px;
}

/* Mapa */
#map {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Campo de entrada */
input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    outline: none;
    transition: border 0.3s ease;
}
input[type="text"]:focus {
    border-color: #28a745;
}

/* Campo de dirección como texto */
#formattedAddress {
    display: none; /* Oculto inicialmente */
    font-size: 16px;
    color: #333;
    margin: 15px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: left;
}

/* Botón */
button {
    padding: 12px;
    width: 100%;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #218838;
}

/* Tamaños de fuente Poppins */
.font-xs { font-size: 0.75rem; }
.font-sm { font-size: 0.875rem; }
.font-md { font-size: 1rem; }
.font-lg { font-size: 1.25rem; }
.font-xl { font-size: 1.5rem; }
.font-2xl { font-size: 2rem; }
.font-3xl { font-size: 3rem; }
.font-4xl { font-size: 4rem; }
.font-5xl { font-size: 5rem; }
