.htht-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.htht-input {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.htht-translate-btn {
    background: #2271b1;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.htht-translate-btn:hover {
    background: #135e96;
}

.htht-translate-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.htht-output {
    min-height: 100px;
    padding: 10px;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 18px;
    direction: rtl;
}

.htht-copy-btn {
    background: #32373c;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.htht-copy-btn:hover {
    background: #191e23;
}