/* =================================================================== */
/* 페이지 특정 CSS (HTML 엔티티 변환기용)                             */
/* =================================================================== */

.converter-container {
    display: flex;
    gap: var(--rg-spacing-large);
    width: 100%;
}

.converter-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.converter-panel .rg_form_textarea {
    flex-grow: 1;
    height: 400px; /* 기본 높이 지정 */
}

.textarea-utils {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--rg-spacing-small);
}

.char-count {
    font-size: 0.8rem;
    color: var(--rg-color-text-light);
}

.util-buttons {
    display: flex;
    gap: 8px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .converter-container {
        flex-direction: column;
    }
}