.page {
  width: 100%;
  max-width: 960px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

.title {
  margin: 0 0 18px 0;
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.grid .full {
  grid-column: 1 / 3;
}

.grid label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.grid input,
.grid textarea,
.grid select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e6e9ef;
  background: #fbfdff;
}

.grid input:focus,
.grid textarea:focus,
.grid select:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  border-color: var(--accent);
}

.actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn {
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  background: #1e4ed8;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #e6e9ef;
  color: #0f172a;
}

.status {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid .full {
    grid-column: auto;
  }
}









.taxi-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;

    grid-column: 1 / -1; /* <- bu, kartları formun tam eninə yayır */
}

  .taxi-option {
    cursor: pointer;
    flex: 0 0 calc(25% - 15px); /* böyük ekranda 4 kart, gap ilə hesab */
    margin-bottom: 20px;
    box-sizing: border-box;
  }

  /* Kiçik ekran üçün */
  @media(max-width: 1200px) { .taxi-option { flex: 0 0 calc(33.333% - 13.33px); } }
  @media(max-width: 992px)  { .taxi-option { flex: 0 0 calc(50% - 10px); } }
  @media(max-width: 576px)  { .taxi-option { flex: 0 0 100%; } }

  .taxi-option input[type="radio"] {
    display: none;
  }

  .taxi-card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .taxi-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .taxi-card h4 {
    margin: 8px 0;
  }

  .taxi-option input[type="radio"]:checked + .taxi-card {
    border-color: #007bff;
    box-shadow: 0 0 12px rgba(0,123,255,0.5);
  }