/* Vamos usar um novo CSS para o básico de personalização
 ========== DS =============
=========== DESIGNMP.NET  ============
*/

/* Tabela DS */
.custom-table {
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #8a8a8a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: #1d2127 2px 2px 2px;
}

.custom-table th,
.custom-table td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.custom-table thead th {
    color: #161616;
    border-bottom: 2px solid #343a40;
}

.custom-table tbody tr:hover {
    background-color: #f2f2f2;
}

.custom-table .a {
    color: #dee2e6;
}

/* Responsive styling for mobile */
@media (max-width: 767px) {

    .custom-table th,
    .custom-table td {
        padding: 8px;
    }

    .custom-table thead th {
        font-size: 14px;
    }

    .custom-table tbody tr:hover {
        background-color: transparent;
    }
}

/* Apostas */
.saldo {
    border-color: #28a745;
    padding: 5px;
    border-radius: 5px;
    font-size: 15px;
    margin-left: 70%;
    margin-top: -25px;
    text-align: center;
}

.historico {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 10px;
}

.data {
    margin-left: 5%;
    margin-top: -25px;
}

.bemvindo {
    margin-top: 70px;
    box-shadow: 0 2px 5px rgba(97, 97, 97, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.bemvindo:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 6px 8px rgba(0, 0, 0, 0.15);
}

/** Redes sociais */
.social_widget {
    margin: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.social_item {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #df6c00;
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social_item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(12, 188, 135, 0.5);
}

/* Estilos específicos para cada rede social */
.social_item i {
    transition: color 0.3s ease;
}

.social_item:hover i {
    color: #fff;
}