body{
    background-color: #1b2629;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
h1{
    margin: 50px 0 30px 0;
    font-size: 2.5rem;
    color: #b2c753;
    text-align: center;
}
h2{
    font-size: 1.5rem;
    color: #31a1c0;
    margin-bottom: 0;
}
button{
    padding: 15px 10px 15px 10px;
    border: none;
    border-radius: 5px;
    background-color: #31a1c0;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    width: fit-content;
    transition: all 300ms ease-in-out;
}
button:hover{
    background-color: #296f83;
}
input, textarea{
    padding: 5px 10px 5px 10px;
    border: none;
    border-radius: 5px;
    color: black;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    width: 100%;
}
select{
    padding: 5px 10px 5px 10px;
    border: none;
    border-radius: 5px;
    color: black;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    width: 300px;
}
/* Menu */
.menu{
    position: absolute;
    width: fit-content;
    background-color: #B2C753;
    top: 60px;
    right: 10%;
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.menu a{
    text-decoration: none;
    color: #1d4d5a;
    font-weight: 600;
}

/* Dasbhoard */
.content-wrapper{
    width: 80%;
    margin: 0 auto;
}
.wrapper{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.slot{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.content{
    display: flex;
    flex-direction: row;
    padding: 10px 15px 10px 15px;
    gap: 30px;
    color:white;
    font-size: 1rem;
    font-weight: 500;
    /*border: 2px solid #6096a5;*/
    border-radius: 10px;
}
.disponible{
    background-color: #31c055;
}
.disponible::before {
    content: "✓"; 
    font-size: 1.6rem;
    font-weight: 800;
}
.no-disponible{
    background-color: #c05555;
}
.no-disponible::before {
    content: "✕";
    font-size: 1.6rem;
    font-weight: 800;
}
.state-text{
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius:50%;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

/*   Login Page */
.login-wrapper{
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.login-wrapper form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
}
.login-wrapper form input{
    padding: 10px 10px 10px 10px;
    border: none;
    border-radius: 5px;
    color: black;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    width: 100%;
}
.login-button{
    width: calc(100% + 20px);
}
.error{
    color: red;
    font-size: 1rem;
    font-weight: 500;
}
