/* assets/css/fc-shop-management.css */
/* ファンクラブ・ショップ管理ページのスタイル */

.fc-shop-management-page {
  max-width: 700px !important;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
}

/* ヘッダー部分（クリエイター名とアイコン） */
.fc-shop-management-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.fc-shop-management-creator-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}

/* 既存の.content imgルールを上書き */
.fc-shop-management-page .fc-shop-management-creator-info .fc-shop-management-avatar,
.fc-shop-management-header .fc-shop-management-creator-info .fc-shop-management-avatar {
  width: 100px !important;
  height: 100px !important;
  max-width: 100px !important;
  max-height: 100px !important;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  align-self: center;
}

.fc-shop-management-creator-name {
  font-size: 1rem !important;
  font-weight: bold;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
  align-self: center;
  display: flex;
  align-items: center;
  height: 100px;
}

/* セクション */
.fc-shop-management-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.fc-shop-management-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* リンクリスト */
.fc-shop-management-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fc-shop-management-link {
  display: flex;
  align-items: center;
  padding: 0.875rem 1rem;
  text-decoration: none !important;
  color: #1f2937;
  transition: background-color 0.2s;
  position: relative;
  padding-left: 1.5rem;
}

/* ピンク色の●マーカー */
.fc-shop-management-link::before {
  content: '●';
  position: absolute;
  left: 0.5rem;
  color: #ec4899;
  font-size: 0.5rem;
  line-height: 1;
}

.fc-shop-management-link:hover {
  background-color: #f0f9ff;
  text-decoration: none !important;
}

.fc-shop-management-link span {
  font-size: 0.95rem;
  text-decoration: none !important;
}

/* ファンクラブ開設CTAボタン */
.fc-shop-management-fc-entry-wrapper {
  text-align: center;
  padding: 1.5rem 1rem;
}

.fc-shop-management-fc-entry-btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  background-color: #ec4899;
  color: #ffffff !important;
  border-radius: 9999px;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(236, 72, 153, 0.4);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.fc-shop-management-fc-entry-btn:hover {
  background-color: #db2777;
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.5);
  transform: translateY(-1px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .fc-shop-management-page {
    max-width: 94% !important;
    padding: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .fc-shop-management-creator-info {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
  
  /* 既存の.content imgルールを上書き（モバイル） */
  .fc-shop-management-page .fc-shop-management-creator-info .fc-shop-management-avatar,
  .fc-shop-management-header .fc-shop-management-creator-info .fc-shop-management-avatar {
    width: 90px !important;
    height: 90px !important;
    max-width: 90px !important;
    max-height: 90px !important;
    display: block;
    flex-shrink: 0;
    align-self: center;
  }
  
  .fc-shop-management-creator-name {
    font-size: 0.9rem !important;
    height: 90px;
  }
  
  .fc-shop-management-link {
    padding: 0.75rem 1rem;
  }
  
  .fc-shop-management-link span {
    font-size: 0.9rem;
  }
}
