.custom-comments-form {
    max-width: 100%;
    direction: rtl;
    text-align: right;
}

.form-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.comment-form {
    display: flex;
    flex-direction: column;
}

.form-field {
    width: 100%;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-field:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

.comment-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    align-self: flex-start;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.submit-button:hover {
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}
