/* =================================================================== */
/* 페이지 특정 CSS (대소문자 변환기용)                                  */
/* =================================================================== */
.converter-container {
    display: flex;
    flex-direction: column;
    gap: var(--rg-spacing);
}
.textarea-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.rg_form_textarea {
    height: 250px;
}
.textarea-utils {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--rg-spacing-small);
}
.stats-info {
    font-size: 0.85rem;
    color: var(--rg-color-text-light);
    display: flex;
    gap: 12px;
}
.stats-info span {
    white-space: nowrap;
}
.controls-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: var(--rg-spacing) 0;
}