/*CSS AÑADIDO*/
* {
    font-family: "roboto", "new times roman", "lato";
    font-size: 1.3rem;
    color: #000000;
}
table{
    cursor: crosshair;
}
a {
    text-decoration: none;
}

input[type=submit]:hover,
input[type=reset]:hover,
select:hover,
input[type=radio]:hover,
label:hover {
    cursor: pointer;
}

.boton:hover,
.boton:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0);

}

input[type=text],
input[type=password] {
    background-color: #fff;
    border: none;
    line-height: 2rem;
}

select {
    height: 2rem;
}

.row {
    flex-direction: row !important;
}

thead {
    font-weight: bold;
}

.borrar {
    background-color: #a10700 !important;
}

input,
select {
    border-radius: .3rem;
}

input:focus {
    background-color: rgba(231, 231, 231, .8);
}

#formulario section {
    width: 80%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}

#login {
    background: none !important;
    box-shadow: none !important;
    width: auto !important;
}

.mal {
    color: #a10700;
}

#meses{
    display: flex;
}
.meses{
    margin: .5rem;
    background-color: rgba(0, 161, 156,.3);
    border-radius: .4rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding:1rem 0;
}
.meses a {
    height: 100%;
    width: 100%;
    padding: 1rem !important;
}
.meses:hover{
    
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
#selected{
    background-color: rgba(0, 161, 156,.8);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
#selected a {
    pointer-events: none; 
    cursor: default;
}

footer{
    display: flex;
    position: absolute;
    left: 1rem;
    bottom: 1rem;
}
footer span{
    font-size: .8rem;
    color: rgba(20,20,20,.9);
}

.si{
    background-color: olivedrab !important;
}

/*FORMULARIO CSS*/
body {
    background-color: azure;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

h1 {
    font-size: 2rem;
    color: #00a19c;
}

form,
#main {
    width: 70vh;
    padding: 2rem;
    border-radius: 10px;
    margin: auto;
    background-color: rgb(0, 161, 156, .2);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    gap: 1rem;
}

.boton {
    color: white;
    font-size: 20px;
    background-color: #00a19c;
    border-radius: .3em;
    border: none;
    padding: .5rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    border-bottom: 1px solid gray;
    transition: .2s;
    cursor: pointer;
}

/*CONSULTA CSS*/
TABLE {
    font-family: arial, helvetica, "roboto", "new times roman", "lato";
    font-size: 22px;
    margin: auto;
    width: 450px;
    text-align: center;

}

TH {
    font-size: 11px;
    font-weight: normal;
    padding: auto;
    border-bottom: 0px solid #fff;
    color: #befaf8;
    background-color: rgb(0, 161, 156, .5);
}

TD {
    padding: 10px;
    background-color: rgb(0, 161, 156, .5);
    border-bottom: 0px solid transparent;
    color: #000000;
    border-top: 0px solid transparent;
    transition: .1s;
}

TR:hover TD {
    background: #c1f3f1;
}

td:hover {
    background-color: #7ba8a7 !important;
}