/* agent-profile-section.css */
/* エージェント用プロフィール編集セクション用スタイル */

/* 成功メッセージ */
.purimall-agent-profile-section-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* プロフィール編集コンテナ */
.purimall-agent-profile-section-container {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5em;
}

.purimall-agent-profile-section-container h3 {
  margin-top: 0;
}

/* フォーム要素 */
.purimall-agent-profile-section-container input[type="text"],
.purimall-agent-profile-section-container textarea {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.purimall-agent-profile-section-container textarea {
  resize: vertical;
}

/* 送信ボタン */
.purimall-agent-profile-section-submit-btn {
  background: #ec4899;
  color: white;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.purimall-agent-profile-section-submit-btn:hover {
  background: #d63384;
}

