* {
    font-family: "El Messiri";
}
body {
    font-family: "El Messiri", system-ui, sans-serif;
    background: #f3f4f6;
    margin: 0;
    padding: 0;
    color: #1f2937;
}

.container {
    max-width: 900px;
    margin: auto;
}

h1 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 24px;
}

.desc {
    text-align: center;
    color: #6b7280;
    margin-bottom: 20px;
}

.label {
    font-size: 14px;
    margin: 10px 0 6px;
    display: block;
    font-weight: bold;
}

textarea {
    width: 100%;
    min-height: 260px;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-family: Consolas, monospace;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
    direction: ltr;
}

textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.output {
    background: #f8fafc;
}

/* زر النسخ */
.copy-wrap {
    text-align: center;
    margin-top: 12px;
}

.copy-btn {
    background: #16a34a;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.copy-btn:hover {
    background: #15803d;
}

.copy-msg {
    margin-top: 8px;
    font-size: 14px;
    color: #15803d;
    display: none;
}