/* Seller Converter Styles */

/* Large, high-contrast inputs */
#leftInput,
#rightInput,
#boxLength,
#boxWidth,
#boxHeight {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem;
}

/* Swap button animation */
#swapBtn {
    transition: transform 0.3s ease;
    min-width: 60px;
    font-size: 1.5rem;
}

#swapBtn:hover {
    transform: scale(1.1);
}

/* Unit dropdowns */
.seller-unit-select {
    font-weight: 700;
    text-align: center;
}

/* Box result display */
#boxResult {
    font-size: 1.1rem;
    font-weight: 500;
    word-break: break-word;
}

.seller-converter-box-result {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

/* Dark mode support */
[data-theme="dark"] .seller-converter-box-result,
[data-theme="true-dark"] .seller-converter-box-result {
    background-color: #1a1a1a;
    border-color: #444;
    color: #e9ecef;
}

[data-theme="dark"] .seller-converter-box-result .text-muted,
[data-theme="true-dark"] .seller-converter-box-result .text-muted {
    color: #adb5bd !important;
}

/* Notepad textarea */
#notepadTextarea {
    font-family: monospace;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    #leftInput,
    #rightInput {
        font-size: 1.25rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    #swapBtn {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}
