.form-formacao-container, .lista-formacao {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.form-formacao {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-formacao label {
    font-weight: bold;
}

.form-formacao input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.form-formacao input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px;
    font-weight: bold;
    border-radius: 8px;
}

.form-formacao input[type="submit"]:hover {
    background-color: #005177;
}

.lista-formacao table {
    width: 100%;
    border-collapse: collapse;
}

.lista-formacao th, .lista-formacao td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.lista-formacao th {
    background-color: #f4f4f4;
}

.lista-formacao a {
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.lista-formacao a:hover {
    background-color: #005177;
}
