/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

h1 {
    color: #4CAF50;
    font-size: 24px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

h2 {
    color: #4CAF50;
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}

input[type="datetime-local"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    width: 100%;
}

button:hover {
    background-color: #45a049;
}

p {
    font-size: 16px;
    margin-top: 20px;
    background-color: #e7f4e4;
    padding: 10px;
    border: 1px solid #4CAF50;
    border-radius: 4px;
    text-align: center;
}

/* Estilo para as divisões */
div {
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    max-width: 400px; /* Define a largura máxima da div */
    width: 100%; /* As divs ocuparão 100% da largura até 400px */
    box-sizing: border-box;
}

.voltar {
    color: white;
    background-color: #4CAF50;
    padding: 10px 20px; /* Ajustei o padding para que o botão fique mais agradável visualmente */
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transição para a cor de fundo e um efeito de "pressionar" */
}

.voltar:hover {
    background-color: #7eb981;
    transform: translateY(-2px); /* Eleva ligeiramente o botão quando o mouse está sobre ele */
}
