:root {
    /* 固定のテーマカラー（緑） */
    --theme-color: #198754;
    --theme-color-dark: #157347;
    --theme-color-rgb: 25, 135, 84;
    --theme-bg-light: rgba(25, 135, 84, 0.1);
    --theme-hover: #157347;
}

/* 不要なテーマバリエーションを削除 */

/* 基本スタイル設定 */
.btn-primary {
    background-color: #198754;
    border-color: #198754;
}

.btn-primary:hover {
    background-color: #157347;
    border-color: #157347;
}

.btn-outline-primary {
    color: #198754;
    border-color: #198754;
}

.btn-outline-primary:hover {
    background-color: #198754;
    border-color: #198754;
}

.text-primary {
    color: #198754 !important;
}

.nav-link.active {
    background-color: #198754 !important;
}

.section-title {
    color: #198754;
    border-bottom-color: #198754;
}

body {
    background-color: #e8f5e9 !important;
    color: #212529;
    transition: background-color 0.3s, color 0.3s;
}

[data-theme-bg="dark"] body {
    background-color: #343a40;
    color: #f8f9fa;
}

[data-theme-bg="light"] body {
    background-color: #e8f5e9 !important;
    color: #212529;
}

.card {
    background-color: #ffffff;
    transition: background-color 0.3s;
    border-color: rgba(25, 135, 84, 0.1);
}

[data-theme-bg="dark"] .card {
    background-color: #2c3034;
    border-color: rgba(25, 135, 84, 0.3);
}

.form-control:focus, .form-select:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.popular-tag {
    color: #198754;
    border-color: #198754;
}

.popular-tag:hover {
    background-color: #198754;
}

.category-icon {
    color: #198754;
}

/* テーマカラー選択ボタンを非表示に */
.color-theme-btn {
    display: none;
}

/* サイドバースタイル */
.sidebar {
    min-height: 100vh;
    background-color: rgba(25, 135, 84, 0.1);
    border-right: 1px solid #dee2e6;
}

.nav-link {
    color: #333;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.nav-link:hover {
    background-color: rgba(25, 135, 84, 0.1);
}

.nav-link.active {
    background-color: #198754;
    color: white;
}

/* 共通スタイル */
.like-button.liked {
    color: #198754;
    border-color: #198754;
}
.like-button.liked i {
    color: #198754;
}

/* 掲示板のカード */
.post-card {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 4px rgba(25, 135, 84, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.2s;
}

.post-card:hover {
    transform: translateY(-2px);
}

/* いいねボタン */
.like-button {
    transition: all 0.2s;
}

/* セクションタイトル */
.section-title {
    color: #198754;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #198754;
}

/* タブナビゲーション */
.nav-tabs .nav-link {
    color: #495057;
    border: none;
    border-bottom: 2px solid transparent;
}

.nav-tabs .nav-link.active {
    color: #198754;
    background: none;
    border-bottom: 2px solid #198754;
}

/* マイページ専用スタイル */
.profile-header {
    background-color: rgba(25, 135, 84, 0.1);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.event-card {
    border: 1px solid rgba(25, 135, 84, 0.1);
    transition: transform 0.2s;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.1);
}

.checklist-item {
    padding: 0.5rem;
    background-color: #fff;
    border: 1px solid rgba(25, 135, 84, 0.1);
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

/* ホーム画面のスタイル */
.upcoming-event {
    border-left: 3px solid #198754;
}

.event-date {
    color: #198754;
}

.badge-upcoming {
    background-color: #198754;
}

.popular-artist {
    border: 1px solid rgba(25, 135, 84, 0.1);
    transition: all 0.2s;
}

.popular-artist:hover {
    border-color: #198754;
    background-color: rgba(25, 135, 84, 0.1);
}

/* ボタンとリンク */
.btn-primary {
    background-color: #198754;
    border-color: #198754;
}

.btn-primary:hover {
    background-color: #157347;
    border-color: #157347;
}

.btn-outline-primary {
    color: #198754;
    border-color: #198754;
}

/* モバイルナビゲーション */
.fixed-bottom .btn-link.text-primary {
    color: #198754 !important;
}

/* バッジ */
.badge-primary {
    background-color: #198754;
}

.card:hover {
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.1);
}

/* アラートとメッセージ */
.alert-primary {
    background-color: rgba(25, 135, 84, 0.1);
    border-color: #198754;
    color: #198754;
}

/* ホーム画面のスタイル */
.upcoming-live {
    border-left: 3px solid #198754;
    background-color: rgba(25, 135, 84, 0.1);
}

.live-date {
    color: #198754;
}

.artist-card {
    border: 1px solid rgba(25, 135, 84, 0.1);
    transition: all 0.2s;
}

.artist-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.1);
    border-color: #198754;
}

.live-badge {
    background-color: #198754;
}

.search-box:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* テーマカラーのテキスト */
.theme-color {
    color: #198754;
}

/* カードタイトル */
.card-title.theme-color {
    color: #198754;
    font-weight: 600;
}

/* セクションタイトルの強調 */
.section-title.theme-color {
    color: #198754;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #198754;
}

/* ライブ一覧画面のスタイル */
.calendar-header {
    background-color: rgba(25, 135, 84, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.calendar-nav .btn {
    color: #198754;
    border-color: #198754;
}

.calendar-nav .btn:hover {
    background-color: #198754;
    color: white;
}

.live-list-item {
    border-left: 3px solid #198754;
    transition: all 0.2s;
}

.live-list-item:hover {
    background-color: rgba(25, 135, 84, 0.1);
    transform: translateX(5px);
}

.live-date-badge {
    color: #198754;
    border: 1px solid #198754;
    background-color: rgba(25, 135, 84, 0.1);
}

.filter-button.active {
    background-color: #198754;
    border-color: #198754;
    color: white;
}

.filter-button:not(.active):hover {
    border-color: #198754;
    color: #198754;
}

/* カテゴリーカードのスタイル */
.category-card.setlist {
    border-left: 3px solid #0d6efd;
}
.category-card.setlist:hover {
    background-color: #f8f9ff;
}

.category-card.items {
    border-left: 3px solid #198754;
}
.category-card.items:hover {
    background-color: #f8fff9;
}

.category-card.fashion {
    border-left: 3px solid #dc3545;
}
.category-card.fashion:hover {
    background-color: #fff8f8;
}

.theme-bg {
    background-color: #198754;
    color: white;
}

.theme-bg-light {
    background-color: rgba(25, 135, 84, 0.1);
}

.btn-theme {
    background-color: #198754;
    color: white;
}

.btn-theme:hover {
    background-color: #157347;
    color: white;
}

.btn-outline-theme {
    color: #198754;
    border: 1px solid #198754;
}

.btn-outline-theme:hover {
    background-color: #198754;
    color: white;
}

/* レスポンシブ対応 */
@media (max-width: 767.98px) {
    body {
        padding-bottom: 4rem;
        background-color: #ffffff !important;
    }
    .col-md-7, .col-md-10, .main-content {
        padding-bottom: 5rem;
    }
} 
