 @font-face {
    font-family: 'IBMPlexSansArabic';
    src: url('fonts/IBMPlexSansArabic-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'IBMPlexSansArabic';
    src: url('fonts/IBMPlexSansArabic-ExtraLight.ttf') format('truetype');
    font-weight: 200;
}

@font-face {
    font-family: 'IBMPlexSansArabic';
    src: url('fonts/IBMPlexSansArabic-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'IBMPlexSansArabic';
    src: url('fonts/IBMPlexSansArabic-Thin.ttf') format('truetype');
    font-weight: 100;
}
    body {
      font-family: 'IBMPlexSansArabic', sans-serif;
      background-color: #f9f9f9;
      margin: 0;
      padding: 0;
    }

    .modal {
      max-width: 600px;
      margin: 50px auto;
      background-color: white;
      border-radius: 6px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      padding: 20px;
    }

    .modal-header {
      text-align: start;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #333;
    }

    .alert {
      background-color: #fff8e1;
      border: 1px solid #ffecb3;
      color: #444;
      padding: 12px 15px;
      border-radius: 4px;
      font-size: 14px;
      line-height: 1.6;
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
    }

    .alert-icon {
      font-size: 20px;
      color: #b8860b;
      /* margin-left: 10px; */
      margin-inline-end: 10px;
      margin-top: 2px;
    }
    .alert-icon img {
      width: 30px;
      height: 30px;
    }

    .request-box {
      text-align: center;
      margin: 20px 0;
    }

    .request-label {
      font-size: 14px;
      color: #666;
      margin-bottom: 8px;
    }

    .request-number {
      display: inline-block;
      background-color: #333;
      color: white;
      padding: 6px 14px;
      border-radius: 6px;
      font-weight: bold;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .request-instruction {
      font-weight: bold;
      font-size: 16px;
      color: #222;
      margin-bottom: 20px;
    }

    .cancel-button {
      background-color: #f5b041;
      color: white;
      border: none;
      border-radius: 4px;
      padding: 10px 18px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.2s ease-in-out;
    }

    .cancel-button:hover {
      background-color: #e0a030;
    }

    .footer {
      text-align: left;
      margin-top: 30px;
      color: #1caa8d;
      font-weight: bold;
      display: flex;
      align-items: center;
    }
    .nafath-logo {
      display: inline-flex;
      align-items: center;
    }
    .nafath-logo img {
      width: 30px;
      height: 30px;
      margin-inline-start: 0.5rem;
    }