* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0fdfd; /* Um tom de ciano mais suave e profissional */
    color: #333;
    line-height: 1.6;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    background-color: white;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden; /* Para o border-radius funcionar */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #00bcd4;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

tr:hover {
    background-color: #f9f9f9;
}
ul, ol {
    background-color: white;
    padding: 20px 40px;
    border-radius: 8px;
    margin: 20px 0;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

li {
    margin-bottom: 10px;
    color: #555;
}

/* Estilo personalizado para os marcadores */
ul { list-style-type: square; }
form {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

input, textarea, select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
    font-size: 16px;
}

input:focus {
    border-color: #00bcd4;
}

label {
    font-weight: bold;
    margin-bottom: -10px;
    text-align: left;
}
button {
    cursor: pointer;
    background-color: #00bcd4;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 10px 0;
}

button:hover {
    background-color: #0097a7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s;
}

img:hover {
    transform: scale(1.02);
}