body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #e8e8e8;
}

/* ------------ Cadastro ------------*/
.container {
    width: 60%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

h1 {
    font-weight: 700;
    color: #333;
}

label {
    display: block;
    margin-top: 20px;
    font-weight: 600;
}

input[type="text"], textarea, input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

input[type="submit"] {
    display: block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 700;
}
select {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    appearance: none; /* Remove o estilo padrão do navegador */
    background-color: #fff;
    background-image: url('https://static-00.iconduck.com/assets.00/time-icon-2048x2048-oly5dfp7.png'); /* Adicione a URL de uma imagem de seta para baixo aqui */
    background-repeat: no-repeat;
    background-position: right 10px center; /* Posiciona a imagem de seta para baixo à direita */
    background-size: 20px;
}

option {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding: 10px;
}
/* ------------ Calendario ------------*/
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #fff;
    color: #444;
    cursor:pointer;
}
.calendar div {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    background-color: #3ab03a;
}
.calendar div:nth-child(7n+1) {
    background-color: #4a4a4a!important;
    color: #fff!important;
    cursor:default;
}
.day-of-week {
    font-weight: bold;
    background-color: #ddd!important;
}

#timeSelectPopup {
    display: none;
    position: fixed;
    width: 300px;
    height: 200px;
    background: white;
    border: 1px solid black;
}

.timeButton {
    background: white;
}

.timeButton.selected {
    background: #9bc47c;
}

#data_horario {
    display: none;
}
#popup{
    display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; background: white; border-radius: 10px; box-shadow: 0px 0px 10px rgba(0,0,0,0.1); width: 70%; padding: 40px;
}
    #popup table {
        width: 100%;
        border-collapse: collapse;
    }
    #popup .timeSlot {
        padding: 10px;
        border: 1px solid #ddd;
        text-align: center;
    }
    #popup .timeSlot.selected {
        background-color: #9bc47c!important;
    }
.btn_style{
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 700;

}

.day{background-color: #3ab03a;}

/* ------------- See Jobs ---------------- */
.see_job_div {
    background-color: #ffffff;
    width: 70%;
    margin: auto;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.see_job_div h1, h2, p {
    margin: 0;
    padding: 0;
}

.see_job_div h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.see_job_div h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.see_job_div p {
    font-size: 16px;
    margin-bottom: 10px;

}

.see_job_div hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.text_desc{
    width: 80%;
    height: auto;
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 10px;
    margin: 5px 0px;
    z-index: 10;
    display: none;
}
.text_desc p{
    font-family: 'Roboto', sans-serif;
    color: #333;
}
@media only screen and (max-width: 600px) {
    .container{width: 100%!important;font-size:18px;}
    .content{width:100%;}
    body {font-size:18px;}
    #monthInput{width:100%}
}