  :root {
      --gold: #c5a059;
      --dark: #1a1a1a;
      --grey: #888;
      --bg: #f0f2f5;
  }

  body {
      background-color: var(--bg);
      font-family: sans-serif;
      /* Sistem fontu */
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
  }

  .card {
      background: white;
      width: 800px;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* Progress Bar */
  .stepper {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
      position: relative;
  }

  .line {
      position: absolute;
      top: 15px;
      width: 100%;
      height: 2px;
      background: #eee;
      z-index: 1;
  }

  .dot {
      width: 30px;
      height: 30px;
      background: white;
      border: 2px solid #eee;
      border-radius: 50%;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
  }

  .dot.active {
      border-color: var(--gold);
      color: var(--gold);
  }

  /* Form */
  .step {
      display: none;
  }

  .step.active {
      display: block;
  }

  h2 {
      margin-top: 0;
      color: var(--dark);
  }

  .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-top: 20px;
  }

  .full {
      grid-column: span 2;
  }

  label {
      display: block;
      font-size: 12px;
      font-weight: bold;
      margin-bottom: 5px;
      color: #555;
  }

  input,
  select,
  textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-sizing: border-box;
  }

  /* Buttons */
  .btn-row {
      display: flex;
      justify-content: space-between;
      margin-top: 30px;
  }

  .btn {
      padding: 12px 25px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
  }

  .btn-next {
      background: var(--dark);
      color: white;
  }

  .btn-prev {
      background: #eee;
      color: #555;
  }


    .btn-gold {
        background: var(--gold);
        color: white;
        /* width: 100%;  <-- Bunu sil veya yorum satırı yap */
        /* margin-top: 10px; <-- Bunu sil veya yorum satırı yap */
    }

  /* Row for Menu Items */
  .item-row {
      display: flex;
      gap: 10px;
      background: #f9f9f9;
      padding: 10px;
      border-radius: 8px;
      margin-bottom: 10px;
  }
  /* gorsel Yükle Input Alanı */
  .gorsel_yukle {
      padding: 8px !important;
      cursor: pointer;
      background: #fff;
  }

  /* Dosya Seç Butonu Tasarımı */
  .gorsel_yukle::file-selector-button {
      border: none;
      background: var(--dark);
      color: white;
      padding: 7px 15px;
      border-radius: 6px;
      margin-right: 15px;
      cursor: pointer;
      font-size: 13px;
      transition: all 0.3s ease;
  }

  /* Hover Durumu */
  .gorsel_yukle::file-selector-button:hover {
      background: var(--gold);
  }