/* Agrega tus estilos personalizados aquí */
body{
 font-family:"HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#formulario{
float:left;
width:60vw}
#map {
margin-left:3vw;
float:left;
width:40vw;
            height: 30vw;
        }
/* Ejemplo de estilos para el menú */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    display: inline-block;
    margin-right: 20px;
}


.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
/* Estilos adicionales */
.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
}
#menu_usuario,
#menu_principal {
    display: flex;
    justify-content: center;
    align-items: center;

}
#menu_principal {
    justify-content: flex;
      width: 80%;

}
#menu_usuario {
    display: flex;
    justify-content: right;
  width:20%
}
.menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex; /* Mostrar elementos del menú en línea */
}
.menu li {
    margin-right: 20px;
    position: relative; /* Hacer que los elementos li sean contenedores relativos */
}
.menu li:last-child {
    margin-right: 0;
}
.menu a {
    color: #000; /* Color del texto del menú */
    text-decoration: none; /* Eliminar subrayado de los enlaces */
    transition: color 0.3s; /* Transición de color al pasar el mouse */
}
.menu a:hover {
    color: #007bff; /* Cambiar color al pasar el mouse */
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    z-index: 1000;
    min-width: 160px;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    transition: display 0.3s ease; /* Transición de visualización */
}
.dropdown-menu li {
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s; /* Transición de color de fondo al pasar el mouse */
}
.dropdown-menu li:hover {
    background-color: #f8f9fa; /* Cambiar color de fondo al pasar el mouse */
}
.dropdown:hover .dropdown-menu {
    display: block; /* Mostrar el submenú al pasar el mouse sobre el elemento raíz */
}
.presentacion{
width:100%;
}
#login{
margin:auto;}
/* Estilos para el contenedor de tareas */
#contenedor_tarea {
    margin-top: 20px;
}

/* Estilos para la información del usuario */
.usuario-info {
    margin-top: 20px;
}
/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
}

.modal-content {
    background-color: #fefefe;
    margin: 1% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 1400px;
    position: relative;
}

.modal1 {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
}

.modal1-content {
    background-color: #fefefe;
    margin: 1% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 1400px;
    position: relative;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Estilos para el iframe */
iframe {
    width: 100%;
    height: 500px;
    border: none;
}
        #map {
            height: 400px;
            width: 100%;
        }

*{box-sizing:border-box;}

form{
	width:100%;
	padding:16px;
	border-radius:10px;
	margin:auto;
	background-color:#ccc;
}
#YaCargado{
color:red}
.form-group{
}
form label{
	width:15vw;
	font-weight:bold;
	display:inline-block;
	top: 50%;
}

form input[type="text"],
form input[type="email"]{
	width:180px;
	padding:3px 10px;
	border:1px solid #f6f6f6;
	border-radius:3px;
	background-color:#f6f6f6;
	margin:8px 0;
	display:inline-block;
		top: 50%;
}

form input[type="submit"]{
	width:100%;
	padding:8px 16px;
	margin-top:32px;
	border:1px solid #000;
	border-radius:5px;
	display:block;
	color:#fff;
	background-color:#000;
} 

form input[type="submit"]:hover{
	cursor:pointer;
}

textarea{
	width:100%;
	height:100px;
	border:1px solid #f6f6f6;
	border-radius:3px;
	background-color:#f6f6f6;			
	margin:8px 0;
	/*resize: vertical | horizontal | none | both*/
	resize:none;
	display:block;
}
#resultado_busqueda
{width:100%;
max-Height: 200px; overflow-y: auto}
/* Estilos específicos para dispositivos móviles */
@media (max-width: 768px) {
    ul li {
        display: block;
        margin-bottom: 10px;
    }
}