@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --text-color: white;
    --border-radius: 20px;
}
body {
    font-family: "Montserrat", sans-serif;
    background-color:#161616;
    background-image: url(background.png);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;    
    color: var(--text-color);
}
#loading {
    height: 100vh;
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    margin: auto 0;
}
.container {
    width: 100%;
    overflow-y: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}
#logo-resto{
    max-width: 220px;
    width: 60%;
    height: auto;
    margin: 60px auto 0 auto;
}
.page {
    padding: 1rem;
    display: none;
}
.page.active {
    display: block;
}
h1 {
    color: white;
    text-align: center;
    font-size: 24px;
    margin-bottom: 12px;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    margin-top: 12px;
    color: white;
    font-weight: 500;
}
input, select {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    background-color: #f0f0f0;
}
button {
    font-family: "Montserrat", sans-serif;
    margin-top: 1.5rem;
    padding: 0.75rem;
    background-color: #F3B65B;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.date-buttons, .time-buttons, .class-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0.5rem;
}
.date-btn, .time-btn, .class-btn {
    flex: 1 0 30%;
    margin: 5px;
    padding: 10px;
    background-color: #F3B65B;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.date-btn:hover, .time-btn:hover, .class-btn:hover {
    background-color: #fbbe7460;
}

.date-btn.active, .time-btn.active, .class-btn.active {
    background-color:#fbbe7460 ;
    color: black;
}

.icon {
    font-size: 48px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    color: var(--primary-color);
}

.counter button {
    background-color: #d20b0b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.counter span {
    color: black;
    font-size: 18px;
    font-weight: bold;
}

#button-back{
    background-color: transparent;
    color: white;
}

#dateInput, #timeInput,#classInput {
    display: none;
}

#logo-done{
    width: 60%;
    height: auto;
    left: 50;
    max-width: 230px;
}

#logo-retolink{
    max-width: 165px;
    padding:10px ;
    margin-top: 60px;
    width: 40%;
}

#title{
    color: white;
    font-size: 1em;
    font-weight: 400;
}

#align{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

p{
    text-align: center;
}
a{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    width: 100%;
}