body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: #f3e8ff;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

h2, h3 {
    text-align: center;
    margin: 5px 0;
    color: #f0abfc; /* Títulos em rosa claro */
}

.count-info {
    text-align: center;
    font-weight: bold;
    color: #d8b4fe;
    margin-bottom: 10px;
}

/* Tabela */
table {
    border-collapse: collapse;
    width: 90%;
    margin: 20px auto;
    background-color: #3b0764;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    border: 1px solid #581c87;
    padding: 12px 10px;
    text-align: center;
}

/* Título/cabeçalho da tabela */
th {
    background: linear-gradient(135deg, #be185d, #a21caf);
    color: #ffffff;
    font-weight: bold;
}

/* Linhas alternadas */
tr:nth-child(even) td {
    background-color: #4c1d95;
    color: #f3e8ff;
}

tr:nth-child(odd) td {
    background-color: #3b0764;
    color: #f3e8ff;
}

/* Hover */
tr:hover td {
    background-color: #9333ea !important;
    color: #ffffff;
}

/* Container */
.container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #3b0764;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid #6b21a8;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Boxes */
.box {
    width: 200px;
    height: 200px;
    background-color: #6b21a8;
    color: white;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    transition: transform 0.2s ease;
}

.box:hover {
    transform: scale(1.05);
}

.box:nth-child(1) {
    background-color: #7e22ce;
}

.box:nth-child(2) {
    background-color: #9333ea;
}

.box:nth-child(3) {
    background-color: #c084fc;
    color: #2e1065;
}