@font-face {
  font-family: 'El Messiri';
  src: url('https://www.sult4n.com/fonts/ElMessiri-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
    body {
        font-family: 'El Messiri', Tahoma, Arial, sans-serif;
        background: #f4f5f7;
        margin: 0;
        padding: 0px;
        color: #222;
    }
    .container {
        max-width: 90%;
        margin: 0 auto;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 18px rgba(15,32,60,0.06);
        padding: 20px;
    }
    h1 {
        margin-top: 0;
        text-align: center;
        font-size: 26px;
        color: #0b3565;
    }
    p.desc {
        text-align: center;
        margin-top: 0;
        margin-bottom: 20px;
        color: #555;
        font-size: 14px;
    }
    label {
        display: block;
        text-align: center;
        margin-bottom: 6px;
        font-weight: 600;
    }
    textarea {
        width: 100%;
        min-height: 220px;
        resize: vertical;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #ccd1dd;
        font-family: Consolas, "Courier New", monospace;
        font-size: 13px;
        direction: ltr;
        text-align: left;
        box-sizing: border-box;
    }
    .buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 15px 0;
        justify-content: center;
    }
    button {
	    font-family: 'El Messiri';
        border: none;
        border-radius: 999px;
        padding: 10px 18px;
        font-size: 14px;
        cursor: pointer;
        font-weight: 600;
        transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    }
    button:active {
        transform: scale(0.97);
    }
    .btn-primary {
        background: linear-gradient(135deg,#0b8fe6,#0b65b8);
        color: #fff;
        box-shadow: 0 4px 10px rgba(11,143,230,0.25);
    }
    .btn-secondary {
        background: #eef1f7;
        color: #222;
        box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    }
    .btn-danger {
        background: #ff4d4f;
        color: #fff;
        box-shadow: 0 4px 10px rgba(255,77,79,0.25);
    }
    .note {
        font-size: 12px;
        color: #777;
        margin-top: 4px;
    }
    .status {
        text-align: center;
        font-size: 13px;
        margin-top: 5px;
        min-height: 18px;
        color: #0a8a43;
    }
    @media (max-width: 768px) {
        .container {
            padding: 15px;
        }
        textarea {
            min-height: 180px;
        }
    }