/* Dashboard - Estilos para usuários logados */

.lotto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.lotto-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s;
    display: block;
    text-decoration: none;
    color: inherit;
}

.lotto-card:hover {
    transform: translateY(-5px);
}

.lotto-header {
    padding: 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lotto-body {
    padding: 1.5rem;
}

.ball {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #f0f0f0;
    margin: 2px;
    font-weight: bold;
    color: #333;
}