.imagen {
    border-radius: 50px;
    padding: 10px;
    border: 0px;
    background-color: white;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}


input[type=date] {
    font-size: 30px;
    max-width: 80%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}


.campo-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%23a1a1aa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: right 0.5rem center;
    background-size: 1.5em 1.5em;
    border-color: #d4d4d8;
    border-width: 1px;
    border-radius: 0.375rem;
    padding-top: 0.6rem;
    padding-right: 2.5rem;
    padding-bottom: 0.6rem;
    padding-left: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.6rem;
  }


textarea {  
    overflow:hidden;
    margin:50px auto;
    display:block;
    max-width: 90%;
}


.botonOpcionMenu {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    width: 98%;
    max-width: 98%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    color: black;
    background-color: white;
    /*background-color: rgb(3, 45, 55);*/
}


.botonOpcionMenuSeleccionada {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: bold;
    width: 98%;
    max-width: 98%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    color: black;
    background-color: rgba(255, 255, 255, 0.816);
    /*background-color: rgb(3, 45, 55);*/
}


.botonOpcion {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    width: 70%;
    max-width: 70%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    color: black;
    background-color: white;
    /*background-color: rgb(3, 45, 55);*/
}


.colorCorporativo {
    color: rgb(3, 45, 55);
}


.lineaCorta {
    width: 80%;
    max-width: 80%;
}


/*
select {
    width: 60%;
    max-width: 60%;
}
*/


p {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.colorFondo {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.colorFondoMenu {
    border-radius: 10px;
    background-color: rgba(244, 229, 65, 0.854);
}


.encabezadoPrincipal {
        border-radius: 10px;
        background-color: rgba(244, 229, 65, 0.854);
}


#descripcion {
    padding-left: 20px;
    padding-right: 20px;
}


textarea {
    resize: none;
}



body {
    padding-left: 1%;
    padding-right: 1%;
  
    height: 100%; /* Asegura que el cuerpo abarque toda la altura de la ventana */
    background-image: url('../img/fondo.jpg'); /* Reemplaza con la URL de tu imagen */
    background-size: cover; /* Ajusta la imagen para que cubra toda el área visible */
    background-attachment: fixed; /* Fija la imagen de fondo para que no se desplace */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
  }

  .white-background {
    background-color: white; /* Fondo blanco */
    padding: 10px; /* Relleno interno */
    border: 1px solid #ccc; /* Borde opcional */
    border-radius: 8px; /* Esquinas redondeadas opcionales */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Sombra opcional */
  }
  
  .content {
    z-index: 1; /* Asegura que el contenido esté encima del fondo */
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .white-box {
    background-color: #fafafa; /* Color de fondo blanco */
    padding: 10px; /* Espaciado interno del cuadro */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); /* Sombra del cuadro */
    max-width: 100%; /* Ancho máximo para adaptarse a pantallas pequeñas */
    width: 100% /* Ancho fijo del cuadro */
  }