body {
    font-family: Arial, sans-serif;
    background-color: #001f3f; /* Azul marinho */
    margin: 0;
    padding: 0;
    color: white;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    background: #002855; /* Azul mais claro */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h2 {
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    color: black;
    border-radius: 5px;
    overflow: hidden;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background: #007bff;
    color: white;
}

tr:nth-child(even) {
    background: #f4f4f4;
}

button, .action-link {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 5px;
}

button:hover, .action-link:hover {
    background-color: #0056b3;
}

/* Responsividade */
@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }

    th {
        display: none;
    }

    tr {
        border: 1px solid #ddd;
        margin-bottom: 10px;
        background: white;
    }

    td {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        text-align: right;
    }

    td::before {
        content: attr(data-label);
        font-weight: bold;
        text-align: left;
    }
}
