.tct-rlb-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.tct-rlb-input {
    width: 100%;
    min-height: 260px;
    padding: 18px;
    border: 1px solid #dcdcdc;
    border-radius: 18px;
    background: #fff;
    color: inherit;
    font: inherit;
    line-height: 1.6;
    resize: vertical;
    box-sizing: border-box;
}

.tct-rlb-input:focus {
    outline: none;
    border-color: #9f9f9f;
}

.tct-rlb-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
}

.tct-rlb-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #111827;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    box-sizing: border-box;
    white-space: nowrap;
    cursor: pointer;
}

.tct-rlb-icons {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.tct-rlb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #dcdcdc;
    border-radius: 999px;
    background: #fff;
    color: #222;
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.tct-rlb-icon:hover {
    border-color: #bdbdbd;
    background: #fafafa;
    transform: translateY(-1px);
}

.tct-rlb-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tct-rlb-status {
    min-height: 22px;
    margin-top: 8px;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .tct-rlb-input {
        min-height: 220px;
    }

    .tct-rlb-actions-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .tct-rlb-action-btn,
    .tct-rlb-icon {
        min-height: 40px;
    }

    .tct-rlb-icon {
        width: 40px;
        height: 40px;
    }
}
