/* Fonte geral */
body {
    background-color: #0d061f;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Container central */
.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Título principal */
.container h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Estilo da tabela */
.table-custom {
    border-collapse: collapse;
    width: 100%;
    font-size: 18px;
}

.table-custom th,
.table-custom td {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: left;
}

.table-custom th {
    background-color: rgba(255, 255, 255, 0.08);
    font-weight: 600;
}

.table-custom td {
    background-color: rgba(255, 255, 255, 0.03);
}

/* Botões */
button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 20px;
}

button:first-of-type {
    background: linear-gradient(90deg, #7c4dff, #e040fb);
    color: white;
    margin-right: 12px;
}

button:first-of-type:hover {
    background: linear-gradient(90deg, #651fff, #d500f9);
    transform: scale(1.02);
}

button:last-of-type {
    background: linear-gradient(90deg, #9e9e9e, #bdbdbd);
    color: white;
}

button:last-of-type:hover {
    background: linear-gradient(90deg, #757575, #9e9e9e);
    transform: scale(1.02);
}

/* Responsividade opcional */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .table-custom {
        font-size: 16px;
    }

    button {
        width: 100%;
        margin-bottom: 10px;
    }
}
