/* Astra Text Resizer v2 styles */
.atr-box {
    position: fixed;
    top: 200px;
    right: 20px;
    display: flex;
    gap: 6px;
    align-items: center;
    z-index: 999999;
    touch-action: none;
    flex-direction: row;
}

.atr-btn {
    background: #e0e0e0;
    color: #000;
    border: 1px solid #bdbdbd;
    border-radius: 10px;
    padding: 6px 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 72px;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.atr-label {
    padding: 2px 4px;
}

.atr-label.active {
    background: #bdbdbd;
    border-radius: 4px;
}

.atr-drag-handle {
    width: 14px;
    height: 42px;
    border-radius: 6px;
    margin-left: 4px;
    background: repeating-linear-gradient(
        90deg,
        #c7c7c7,
        #c7c7c7 2px,
        #e6e6e6 2px,
        #e6e6e6 4px
    );
    cursor: move;
    opacity: .8;
}

/* Zoom levels with improved line-height */
.astra-text-zoom-120 .entry-content,
.astra-text-zoom-120 .entry-content p,
.astra-text-zoom-120 .entry-content li,
.astra-text-zoom-120 .entry-content blockquote,
.astra-text-zoom-120 .entry-content pre {
    font-size: 120%;
    line-height: 1.6;
}

.astra-text-zoom-140 .entry-content,
.astra-text-zoom-140 .entry-content p,
.astra-text-zoom-140 .entry-content li,
.astra-text-zoom-140 .entry-content blockquote,
.astra-text-zoom-140 .entry-content pre {
    font-size: 140%;
    line-height: 1.7;
}

.astra-text-zoom-160 .entry-content,
.astra-text-zoom-160 .entry-content p,
.astra-text-zoom-160 .entry-content li,
.astra-text-zoom-160 .entry-content blockquote,
.astra-text-zoom-160 .entry-content pre {
    font-size: 160%;
    line-height: 1.8;
}

/* Hide in print */
@media print {
    .atr-box { display: none !important; }
}
