
a{
    color: inherit; /* رنگ لینک مثل متن معمولی بشه */
    text-decoration: none; /* خط زیر لینک حذف بشه */
}

    body {
      margin: 0;
      background: #e5e5e5;
      font-family: "Vazirmatn", sans-serif;
      display: flex;
      justify-content: center;
      padding: 20px;
    }

    .window {
      width: 900px;
      max-width: 100%;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(18px) saturate(180%);
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.4);
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* نوار عنوان */
    .title-bar {
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .title-left {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 600;
      color: #333;
    }

    .title-left img {
      width: 20px;
      opacity: 0.9;
    }

    .title-buttons {
      display: flex;
      gap: 6px;
    }

    .btn {
      width: 40px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.2s;
      font-size: 18px;
      color: #444;
    }

    .btn:hover {
      background: rgba(0,0,0,0.08);
    }

    .btn.close:hover {
      background: #e81123;
      color: white;
    }

    /* نوار ابزار */
    .toolbar {
      background: rgba(255,255,255,0.5);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,0,0,0.08);
      padding: 10px 16px;
      display: flex;
      gap: 20px;
      font-size: 14px;
      color: #444;
      flex-wrap: wrap;
    }

    .toolbar-item {
      cursor: pointer;
      padding: 6px 10px;
      border-radius: 6px;
      transition: 0.2s;
    }

    .toolbar-item:hover {
      background: rgba(0,0,0,0.08);
    }

    /* محتوا */
    .content {
      padding: 24px;
      font-size: 15px;
      line-height: 2;
      white-space: pre-wrap;
      direction: rtl;
      color: #222;
      overflow-wrap: break-word;
      flex: 1;
    }

    .section-title {
      font-weight: bold;
      font-size: 17px;
      margin-top: 25px;
      margin-bottom: 10px;
      color: #111;
    }

    /* ✅ استاتوس بار */
    .status-bar {
      height: 36px;
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(0,0,0,0.08);
      display: flex;
      align-items: center;
      padding: 0 16px;
      font-size: 13px;
      color: #444;
      justify-content: center;
      text-align: center;
    }

    /* ریسپانسیو */
    @media (max-width: 600px) {
      body {
        padding: 10px;
      }

      .title-bar {
        height: 42px;
        padding: 0 10px;
      }

      .title-left {
        font-size: 13px;
        gap: 6px;
      }

      .title-left img {
        width: 18px;
      }

      .btn {
        width: 32px;
        height: 24px;
        font-size: 16px;
      }

      .toolbar {
        padding: 8px 10px;
        gap: 10px;
        font-size: 13px;
      }

      .content {
        padding: 16px;
        font-size: 14px;
        line-height: 1.9;
      }

      .section-title {
        font-size: 15px;
      }

      .status-bar {
        font-size: 12px;
        height: 34px;
      }
    }
