/* Estilos específicos da página de Bloqueios */
#bloqueios {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px;
    min-height: 100vh;
}

#bloqueios h1 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#bloqueios .grid {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#bloqueios .linha {
    background: white;
    transition: all 0.3s ease;
}

#bloqueios .linha:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#bloqueios .rodape {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    margin-top: 20px;
}

#bloqueios .btn-voltar,
#bloqueios .btn-recarregar {
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

#bloqueios .btn-voltar {
    background: rgba(108, 117, 125, 0.3);
}

#bloqueios .btn-recarregar {
    background: rgba(0, 122, 255, 0.3);
}
