/**
 * Estilos para o Indicador de Resolução da Tela
 */

#resolucao-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    
    transition: opacity 0.2s ease;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    #resolucao-indicator {
        bottom: 10px;
        right: 10px;
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    #resolucao-indicator {
        bottom: 8px;
        right: 8px;
        font-size: 10px;
        padding: 5px 8px;
    }
}
