/* Estilos generales */

/* * Selecciona todos los elementos de la página    */
*{
    margin: 0px;
    padding: 0px;
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-decoration: none; /* Ninguna decoración*/
}*/

p{
    margin-top: 5px;
    margin-bottom: 5px;

}

.box p, .box h2, .box h3, .box ul{
    margin-top: 5px;
    margin-bottom: 5px;

}

.box ul, .box ol{    
    margin-left: 20px;
    margin-bottom: 10px;
    


}

body{
    background-color: #f2f2f2;
}

/* Estilos Cabecera */
header{
    width: 800px;
    height: 115px;
    background-color: white;
    margin: 0 auto;
}

/* # porque tiene ID */

#logotipo{
    width: 90%;
    height: 110px;
    margin: 0 auto;
}

#logotipo img{
    display: block;
    width: 220px;
    float: left;
    margin-top: 35px;
}

#logotipo h1{
    display: block;
    float: left;
    
    margin-top: 40px;
    margin-left: 80px;
    font-weight: bold;
    color: #c7a056;
}


/* Estilos barra de navegacion */
nav{
    width: 900px;
    height: 40px;
    margin: 0 auto;
    background-color: #1b1e1f;
    border: 1px solid #333333;
    box-shadow: 0px 22px 22px gray; /* Sombra del menu*/
    font-size: 15px;
}

nav ul{
    list-style: none;
    text-decoration: none;
}

nav ul li{
    line-height: 20px;
    float: left;
}

nav ul li a{
    display: block;
    padding: 10px;
    padding-right: 10px;
    padding-left: 10px;
    color: #d1d4d6;
}

nav ul li a.cerrar-sesion{
    color: red;
    font-weight: bold;
}

nav ul li a:hover{ /* Sombreado al pasar el mouse sobre los menús  */
    background: #42a096;
    box-shadow: 0px 0px 5px #444 inset;
    color: white;
    transition: all 300ms;
}

nav ul li ul {
    display: none;
    position: absolute;
    background-color: #1b1e1f;
    border: 1px solid #333;
    z-index: 1000;
    min-width: 120px;
    padding: 0;
}

nav ul li:hover > ul {
    display: block;
}

nav ul li ul li {
    display: block;
    float: none;
}

nav ul li ul li a {
    padding: 10px;
    color: #d1d4d6;
    text-align: left;
}

nav ul li ul li a:hover {
    background: #42a096;
    color: white;
}


/* Para submenús anidados (tercer nivel) */
nav ul li ul li:hover > ul {
    display: block;
    top: 0;
    left: 100%;
}
/* Asegura posicionamiento correcto de submenús anidados */
nav ul li ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #1b1e1f;
    border: 1px solid #333;
    z-index: 1001;
    min-width: 160px;
}
/* Estilos generales para items del submenú */
nav ul li ul li {
    position: relative;
}
nav ul li ul li a {
    display: block;
    padding: 10px;
    color: #d1d4d6;
    text-align: left;
}
nav ul li ul li a:hover {
    background: #42a096;
    color: white;
}
/* . porque tiene class para barra en 3d*/
.barra{
    width: 900px;
    margin: 0 auto;
}

.esquina-izquierda{
    display: block;
    border-left: 20px solid transparent;
    border-top: 10px solid #2b2f30;
    float: left;
}

.esquina-derecha{
    display: block;
    border-right: 20px solid transparent;
    border-top: 10px solid #2b2f30;
    float: right;
}

.relleno-barra{
    display: block;
    width: 860px;
    height: 10px;
    background: #2b2f30;
    float: left;
}

/* Estilos contenido central*/

#content{
    width: 800px;
    min-height: 930px;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 30px;
}

.box{
    padding: 20px;
    background: white;
    width: 760px;
    min-height: 900px;
    border: 1px solid #ddd;
    margin: 0 auto;
}

.auth-form-body {
    display: block;
    padding: 35px;
    margin-left: 195px;
    margin-top: 5px;
    font-size: 14px;
    background-color: #f6f8fa;
    border: 1px solid #057af0bb;
    
    border-radius: 6px;
    width: 300px;
}

.auth-form-body-empleado {
    display: block;
    padding: 35px;
    margin-left: 0px;
    margin-top: 5px;
    font-size: 14px;
    background-color: #f6f8fa;
    border: 1px solid #057af0bb;
    
    border-radius: 6px;
    width: 300px;
}

.auth-form-body-request {
    display: block;
    padding: 35px;
    margin-left: 0px;
    margin-top: 5px;
    font-size: 12px;
    background-color: #f6f8fa;
    border: 1px solid #057af0bb;
    
    border-radius: 6px;
    width: 690px;
}


.auth-form-body h1{
    text-align: center;
}

.box form{
    display: block;
    width: 100%; /* Ancho */
    margin: -5px
    
}

.box form input,
.box form label{
    display: block;
    padding: 10px;
    padding-left: 0px;
    color: black;
    width: 100%;
    border-radius: 6px;
    text-align: left;
    font-size: 14px;
}

.box form input[type="text"],
.box form input[type="email"],
.box form input[type="password"],
.box form textarea,
.box form select{
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
    
}

.box form select{
    width: 200px;
    padding: 5px;
}

.box form .g-recaptcha{
    display: block;
    width: 100%;
    padding-left: 5px;
    margin-top: 25px;

}



.box form input[type="submit"],
.box form input[type="button"],
.botton_send form input[type="send"],
.box form button{
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    margin-left: 6px;
    padding: 7px 25px;
    margin-top: 30px;
    background: #2da44e;
    color: white;
    transition: 300ms all;
    border: 1px solid;
    border-radius: 6px #2da44e;
    font-size: 14px;
    font-weight: bold;

}

.box form input[type="submit"]:hover,
.box form input[type="button"]:hover,
.box form button:hover{
    cursor: pointer;
    background: #1d6e34 ;
    color: white;

}


.mensaje,
.alert-success,
.alert{
    padding: 7px 100px;
    margin-top: 15px;
    background: #2da44e;
    color: white;
    border: 1px solid;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;


    
}

.alert-warning{
    padding:  9px;
    background: red;
    color: black;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 6px red;
    
}

.mensaje label[for=guardado_si]{
    color: black;  
    font-weight: bold;
    text-align: center;
}

.mensaje label[for=guardado_no]{
    color: red;
}








.title{
    color: #444;
    letter-spacing: 1px;
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 5px;
}

footer{
    width: 900px;
    background-color: #42a096;
    border: 1px solid #333;
    color: #d1d4d6;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0px 0px 20px gray;
    margin: 0 auto;

}

table.tables {
    font-family: Arial, Helvetica, sans-serif;
    border: 1px solid #FFFFFF;
    width: 100%;
    height: 100px;
    text-align: center;
    align-content: center;
}
table.tables td, table.tables th {
    border: 1px solid #FFFFFF;
    padding: 0px 0x;
}
table.tables tbody td {
    font-size: 13px;
}
table.tables thead {
    background: #000000;
    border-bottom: 5px solid #FFFFFF;
}
table.tables thead th {
    font-size: 17px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    border-left: 2px solid #FFFFFF;
}
table.tables thead th:first-child {
    border-left: none;
}
  
table.tables thead th.borrar {
    background: #ff0000;
    padding: 0px 0px;
}

table.tables td.borrar {
    background: white;
    padding: 0px 0px;
}

table.tables td img.image {
    width: 150px;
    height: 100px;
}

.rojo{
    color: red;
    box-shadow: 0px 0px 4px black;
}

.btn-primary, .btn-success, .btn-warning, .btn-danger, .btn-info, .btn-export {
    text-shadow: 0 1px 0 rgb(0 0 0 / 20%);
  }
  
.btn {
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 20%);
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-export {
    color: #fff;
    background-color: #379e45;
    border-color: #379e45;
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
  
.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 1px 4px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.table-bordered {
    border: 1px solid #057af0bb;
    border-collapse: collapse;
    width: 100%;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #057af0bb;
    padding: 3px;
}
