/**
 * Estilos do Plugin Mega Sena
 */

.mega-sena-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.mega-sena-header {
    border-bottom: 2px solid #0066b3;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.mega-sena-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #0066b3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-sena-title i {
    font-size: 24px;
}

.mega-sena-content {
    color: #333;
}

.mega-sena-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.mega-sena-concurso,
.mega-sena-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-sena-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.mega-sena-value {
    font-weight: 700;
    color: #0066b3;
    font-size: 16px;
}

.mega-sena-numeros {
    margin-bottom: 20px;
}

.mega-sena-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    text-align: center;
}

.mega-sena-bolas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.mega-sena-bola {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0066b3 0%, #004d8c 100%);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 102, 179, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mega-sena-bola:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 179, 0.4);
}

.mega-sena-premio {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.mega-sena-premio-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mega-sena-premio-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.mega-sena-premio-valor {
    font-size: 24px;
    font-weight: 700;
    color: #0066b3;
}

.mega-sena-proximo {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #0066b3;
}

.mega-sena-proximo-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-sena-proximo-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.mega-sena-proximo-numero {
    font-size: 18px;
    font-weight: 700;
    color: #0066b3;
}

.mega-sena-proximo-data {
    font-size: 14px;
    color: #666;
}

.mega-sena-proximo-valor {
    font-size: 16px;
    font-weight: 600;
    color: #0066b3;
    margin-top: 5px;
}

.mega-sena-ganhadores {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.mega-sena-faixas {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-sena-faixa {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #0066b3;
}

.mega-sena-faixa-desc {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.mega-sena-faixa-ganhadores {
    font-size: 13px;
    color: #666;
}

.mega-sena-faixa-valor {
    font-size: 15px;
    font-weight: 700;
    color: #0066b3;
    margin-top: 5px;
}

.mega-sena-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.mega-sena-footer small {
    color: #999;
    font-size: 12px;
}

.mega-sena-footer i {
    margin-right: 5px;
}

/* Responsivo */
@media (max-width: 768px) {
    .mega-sena-bola {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .mega-sena-premio-valor {
        font-size: 20px;
    }
}

