    body {
      margin: 0;
      font-family: 'Vazir', sans-serif;
      display: flex;
      direction: rtl;
      background-color: #000000;
    }

    /* منوی سمت چپ */
    .sidebar {
      background-color: #0d3b30;
      color: white;
      width: 90px;
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 10px;
      position: fixed;
      right: 0;
      top: 0;
    }

    .sidebar button {
      background: none;
      border: none;
      color: white;
      margin: 20px 0;
      text-align: center;
      cursor: pointer;
      font-size: 14px;
      transition: 0.3s;
    }

    .sidebar button:hover {
      color: #ffd700;
    }

    /* بخش اصلی */
    .content {
      margin-right: 90px;
      padding: 20px;
      width: 100%;
      scroll-behavior: smooth;
    }

    section {
      margin-bottom: 50px;
    }

    /* عنوان هر بخش */
    .section-title {
      background-color: #0d3b30;
      color: white;
      text-align: center;
      padding: 10px;
      border-radius: 12px;
      margin-bottom: 20px;
      font-size: 20px;
    }

    /* کارت غذا */
    .card {
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      text-align: center;
      overflow: hidden;
    }

    .card img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .card h3 {
      margin: 10px 0 5px;
      font-size: 18px;
    }

    .card p {
      margin: 0;
      color: #333;
      font-weight: 600;
    }

    .add-btn {
      width: 100%;
      background-color: #0d3b30;
      color: white;
      padding: 10px;
      border: none;
      cursor: pointer;
      border-radius: 0 0 12px 12px;
      font-size: 14px;
    }

    .add-btn:hover {
      background-color: #145f4a;
    }

    /* برای موبایل */
    @media (max-width: 768px) {
      .sidebar {
        width: 70px;
      }
      .content {
        margin-right: 70px;
      }
    }
  
