/* ============================== */
/* 🔤 FONT SCALER WIDGET          */
/* Controle de tamanho de fonte   */
/* ============================== */

.font-scaler-widget {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 2px 4px;
    user-select: none;
}

.font-scaler-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    border-radius: 4px;
    font-size: 11px;
    transition: background 0.2s;
    padding: 0;
}

.font-scaler-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.25);
}

.font-scaler-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.font-scaler-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    padding: 0 2px;
}

.font-scaler-label:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Responsivo - esconder texto em telas pequenas */
@media (max-width: 768px) {
    .font-scaler-widget {
        order: -1;
    }
}
