/* assets/css/shop-basic-info.css */
/* ショップ基本情報編集ページ（ページ固有スタイル） */

.shop-basic-info-external-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop-basic-info-external-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

.shop-basic-info-external-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0.5rem;
}

.shop-basic-info-external-field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.shop-basic-info-external-field-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #4b5563;
  display: none;
}

.shop-basic-info-external-row input[type="text"],
.shop-basic-info-external-row input[type="url"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 0.9rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .shop-basic-info-external-header {
    display: none;
  }

  .shop-basic-info-external-row {
    grid-template-columns: 1fr;
  }

  .shop-basic-info-external-field-label {
    display: block;
  }
}
