* {

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #1d4ed8;
}

.topo {
    background: #1e293b;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
}

.card h2 {
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 10px;
    border-bottom: 1px solid #334155;
}

.logout {
    color: white;
    text-decoration: none;
    background: #dc2626;
    padding: 10px 15px;
    border-radius: 8px;
}

.erro {
    background: #dc2626;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
}

@media(max-width: 768px) {

    .container {
        grid-template-columns: 1fr;
    }

}