/* RESET GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ESTILO DO CORPO */
body {
    background-color: #f4f4f4;
    color: #333;
}

/* CONTAINER PRINCIPAL */
.container {
    width: 80%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* CABEÇALHO */
header {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 22px;
}

/* SEÇÕES */
.section {
    margin-bottom: 20px;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

/* MENU */
.menu {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* BOTÕES */
.button {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: 0.3s;
}

.button:hover {
    background: #218838;
}

.button.delete {
    background: #dc3545;
}

.button.delete:hover {
    background: #c82333;
}

/* DESCRIÇÃO */
.description {
    font-size: 16px;
    color: #555;
    padding: 10px;
}

/* RODAPÉ */
footer {
    text-align: center;
    padding: 10px;
    background: #222;
    color: white;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.container {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

button:hover {
    background: #218838;
}

a.button {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
}

a.button:hover {
    background: #c82333;
}
/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header-container {
    background-color: #333;
    color: white;
    padding: 10px;
}

.header-container h1 {
    margin: 0;
    font-size: 24px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
}

nav ul li a:hover {
    background-color: #555;
}

.footer-container {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

