/* ============================================
   カスタム評価機能のスタイル
============================================ */

/* 評価とお気に入りコンテナ */
.post-rating-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  padding: 15px;
  background: rgba(255, 182, 193, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 182, 193, 0.2);
}

/* 評価コンテナのスタイル調整 */
.post-ratings {
  display: inline-block !important;
  padding: 10px !important;
  background: rgba(255, 182, 193, 0.1) !important;
  border-radius: 8px !important;
  margin: 10px 0 !important;
  box-shadow: 0 2px 5px rgba(240, 155, 195, 0.2) !important;
  width: 100%;
  text-align: center;
}

/* お気に入りボタンのコンテナ */
.favorite-button-container {
  margin-top: 15px;
  width: 100%;
  text-align: center;
}

/* お気に入りボタンのスタイル */
.simplefavorite-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 160px;
}

/* レスポンシブ対応削除（常に縦並びに） */