/* calendar-view625.css - 更新版本避免缓存问题 */
.calendar-wrapper {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
.calendar-container {
    max-width: 95%;
    width: 95%;
    margin: 30px auto;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.2),
        0 0 0 8px #2a2a4e,
        0 0 0 12px rgba(255,255,255,0.1),
        0 15px 50px rgba(0,0,0,0.4);
    overflow: visible;
    border: 1px solid rgba(255,255,255,0.15);
    box-sizing: border-box;
    position: relative;
}

/* 大きなロゴの背景スタイル（PC端のみ） */
.calendar-background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: slowRotate 120s infinite linear;
}

.calendar-background-logo svg {
    width: 100%;
    height: 100%;
}

/* カレンダーのエッジ効果を追加 */
.calendar-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    border-radius: 15px;
    z-index: -1;
    pointer-events: none;
}

/* カレンダーの下部に影効果を追加 */
.calendar-container::after {
    content: '';
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: -10px;
    height: 10px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
    border-radius: 50%;
    filter: blur(5px);
    z-index: -2;
}

.vector-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 30px; /* 下部の内側余白を増加 */
    background: linear-gradient(135deg, #1a1a2e, #0f3443, #34e89e);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 15px 15px 0 0;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    width: 100%;
    text-align: center;
    gap: 20px; /* 要素間の間隔を増加 */
}

.calendar-nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px; /* 間隔を大幅に増加 */
    margin-bottom: 15px;
    width: 100%;
    max-width: 500px; /* 最大幅を制限 */
    margin: 0 auto 15px;
}

.calendar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 80%);
    opacity: 0.5;
    pointer-events: none;
}

.calendar-title {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    position: absolute;
    overflow: hidden;
    padding: 10px 20px;
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
    box-shadow:
        inset 0 1px 2px rgba(0,0,0,0.3),
        0 1px 1px rgba(255,255,255,0.1);
    margin: 15px auto 5px; /* 上部マージンを増加 */
    width: auto;
    min-width: 200px;
    text-align: center;
    left: 50%; /* 中央に配置 */
    transform: translateX(-50%); /* 水平方向に中央揃え */
    z-index: 1; /* ダウンロードボタンの下に表示されるように */
}

/* タイトル部分の共通スタイル */
.calendar-title .title-part {
    display: inline-block;
    background: linear-gradient(to right, #ffffff, #ff6b6b, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite linear;
    background-size: 200% 100%;
    text-align: center;
    margin: 0 auto;
}

/* 月の数字のアニメーション効果 */
.calendar-title .month-number {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.5s ease;
}

.calendar-title .month-number.animate-in {
    opacity: 1;
    transform: scale(1);
    animation: monthNumberIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.calendar-title .month-number.animate-out {
    opacity: 0;
    transform: scale(0.8);
    animation: monthNumberOut 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes monthNumberIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes monthNumberOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.calendar-nav {
    display: flex;
    gap: 15px;
}

.calendar-nav-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 3px 10px rgba(0,0,0,0.2),
        inset 0 1px 1px rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    transform: perspective(300px) rotateY(0deg);
    position: relative;
    z-index: 2;
}

.calendar-nav-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: perspective(300px) translateY(-5px) rotateY(10deg);
    box-shadow:
        0 8px 20px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(255,255,255,0.3);
}

/* ボタンの発光効果を追加 */
.calendar-nav-btn::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.calendar-nav-btn:hover::after {
    opacity: 1;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.today-btn {
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 3px 10px rgba(0,0,0,0.2),
        inset 0 1px 2px rgba(255,255,255,0.4);
    font-weight: bold;
    letter-spacing: 1px;
    min-width: 100px;
    text-align: center;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    transform: perspective(300px) rotateX(0deg);
    position: relative;
    z-index: 2;
}

.today-btn:hover {
    background: linear-gradient(90deg, #ff8e8e, #ff6b6b);
    transform: perspective(300px) translateY(-5px) rotateX(-10deg);
    box-shadow:
        0 8px 20px rgba(0,0,0,0.3),
        inset 0 1px 3px rgba(255,255,255,0.5);
}

/* 「今月」ボタンの発光効果を追加 */
.today-btn::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 30px;
    background: radial-gradient(ellipse, rgba(255,107,107,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.today-btn:hover::after {
    opacity: 1;
    animation: todayBtnPulse 1.5s infinite alternate;
}

/* ダウンロードボタンのスタイル */
/* タイトルコンテナのスタイル */
.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    width: 100%;
    text-align: center;
    margin-top: 10px; /* 上部マージンを増加 */
    margin-bottom: 15px; /* 下部マージンを増加 */
}

/* ダウンロードボタンのスタイル */
.download-btn {
    background: rgba(255, 255, 255, 0.2); /* 半透明の白い背景、ガラス質感を復元 */
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 3px 10px rgba(0,0,0,0.2),
        inset 0 1px 2px rgba(255,255,255,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: absolute;
    right: 20px; /* 右側の距離を調整 */
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    margin-left: 15px;
    backdrop-filter: blur(5px); /* ぼかし効果を追加してガラス質感を強化 */
    -webkit-backdrop-filter: blur(5px);
}

/* PCとモバイル端末のボタン表示制御 */
.pc-only {
    display: flex;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .mobile-only {
        display: flex;
    }
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.3); /* ホバー時に透明度を少し上げる */
    transform: translateY(-50%) scale(1.1);
    box-shadow:
        0 8px 20px rgba(0,0,0,0.3),
        inset 0 1px 3px rgba(255,255,255,0.7);
}

/* ボタンの発光効果を追加 */
.download-btn::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%); /* 白い光彩でガラス質感を強化 */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.download-btn:hover::after {
    opacity: 1;
    animation: downloadBtnPulse 1.5s infinite alternate;
}

@keyframes downloadBtnPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* モバイル端末ではdownloadBtnPulseアニメーションを無効化 */
@media (max-width: 768px) {
    @keyframes downloadBtnPulse {
        0%, 100% {
            transform: scale(1);
            opacity: 0.5;
        }
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* モバイル端末ではpulseアニメーションを無効化 */
@media (max-width: 768px) {
    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            opacity: 0.5;
        }
    }
}

@keyframes todayBtnPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* モバイル端末ではtodayBtnPulseアニメーションを無効化 */
@media (max-width: 768px) {
    @keyframes todayBtnPulse {
        0%, 100% {
            transform: scale(1);
            opacity: 0.5;
        }
    }
}

/* 生日标签样式 - 更大更醒目 */
.birthday-badge {
    font-size: 0.9rem !important;
    padding: 6px 12px !important;
    border-radius: 12px !important;
    font-weight: bold !important;
    text-align: center !important;
    white-space: nowrap !important;
    letter-spacing: 1px !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3) !important;
    animation: birthdayGlow 2s ease-in-out infinite alternate !important;
    min-width: 100px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    max-width: 90% !important;
}

@keyframes birthdayGlow {
    0% {
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
}

/* 移动端生日标签样式 - 更大更醒目 */
.calendar-list-birthday {
    border-radius: 12px !important;
    padding: 15px !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    animation: birthdayPulse 3s ease-in-out infinite !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

@keyframes birthdayPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    }
}

/* カレンダーグリッド - モダンでクールなスタイル */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    gap: 2px;
    padding: 2px;
    position: relative;
    z-index: 1;
    border-radius: 0 0 15px 15px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 10px; /* 上部マージンを増加 */
    position: relative;
}

/* 大きなロゴを背景に追加（PC端のみ） */
.calendar-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
    backface-visibility: hidden;
    width: 75%;
    height: 75%;
    background-image: url('../static/picture/logo_large.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
    filter: brightness(10) contrast(0.9) drop-shadow(0 0 2px rgba(255, 255, 255, 1));
    /* 回転アニメーションを削除 */
}

.calendar-weekday {
    text-align: center;
    padding: 12px 5px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 1px 2px rgba(0,0,0,0.1);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.calendar-day {
    min-height: 180px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.1),
        0 1px 2px rgba(0,0,0,0.1);
    transform: perspective(800px) rotateX(0deg);
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: perspective(800px) translateY(-3px) rotateX(-5deg);
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.2),
        0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.1);
}

.calendar-day-number {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: right;
    color: #c9e2a0; /* 平日（月曜から金曜）：薄い黄緑色 */
    display: flex;
    justify-content: flex-end;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.calendar-day:hover .calendar-day-number {
    transform: scale(1.1);
    color: #ffb3b3;
}

.calendar-day.today {
    background: rgba(52, 232, 158, 0.1);
    border: 2px solid #34e89e;
    position: relative;
    box-shadow: 0 0 20px rgba(52, 232, 158, 0.4);
    animation: todayPulse 2s infinite alternate;
}

@keyframes todayPulse {
    0% {
        box-shadow: 0 0 15px rgba(52, 232, 158, 0.3);
    }
    100% {
        box-shadow: 0 0 25px rgba(52, 232, 158, 0.5);
    }
}

.calendar-day.today .calendar-day-number {
    background: linear-gradient(90deg, #0f3443, #34e89e);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.calendar-day.other-month {
    background: rgba(255, 255, 255, 0.01);
}

.calendar-day.other-month .calendar-day-number {
    color: rgba(255, 255, 255, 0.3);
}

.calendar-day.weekend {
    background: rgba(255, 107, 107, 0.08);
    border-left: 2px solid rgba(255, 107, 107, 0.3);
}

.calendar-day.weekend.sunday .calendar-day-number {
    color: #ffb3c0; /* 日曜日：ピンク色がかった赤 */
    font-weight: bold;
}

.calendar-day.weekend.saturday .calendar-day-number {
    color: #8cb3ff; /* 土曜日：青色 */
    font-weight: bold;
}

.calendar-day.weekend:hover .calendar-day-number {
    color: #ffb3b3;
}

/* イベントスタイル - モダンでクールなデザイン */
.calendar-event {
    margin-bottom: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 40px;
}

.calendar-event::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--event-color-start), var(--event-color-end));
}

.calendar-event:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.calendar-event .event-member-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 4px;
}

.calendar-event .member-badge {
    font-size: 0.85rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-right: 3px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.calendar-event .member-badge:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.25);
}

/* 特別な日付タグのスタイル */
.special-day-badge {
    font-size: 0.75rem;
    padding: 2px 6px;
    animation: glow 1.5s infinite alternate;
    position: absolute;
    z-index: 5;
    transform: rotate(-10deg);
    opacity: 0.9;
    backdrop-filter: blur(2px);
    border-radius: 10px;
}

.calendar-day {
    position: relative;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    }
}

.calendar-event .event-title {
    white-space: normal;
    overflow: visible;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.3;
    word-break: break-word;
    max-height: none;
}

.calendar-event-more {
    margin-top: 8px;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-event-more:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* モバイル端末のリストビュー - モダンでクールなデザイン */
.calendar-list-view {
    display: none;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 15px;
}

.calendar-list-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.calendar-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.calendar-list-date {
    padding: 15px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 2px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.calendar-list-date:hover {
    background: linear-gradient(135deg, #252547 0%, #1e2a4d 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.calendar-list-date::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 80%);
    opacity: 0.5;
    pointer-events: none;
}

.calendar-list-day {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff6b6b;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    overflow: visible;
    white-space: nowrap;
}

.calendar-list-date:hover .calendar-list-day {
    color: #ffb3b3;
    transform: scale(1.05);
}

.calendar-list-year {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
}

.calendar-list-date:hover .calendar-list-year {
    color: rgba(255, 255, 255, 1);
}

.calendar-list-content {
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calendar-list-event {
    padding: 15px;
    position: relative;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
    width: 100%;
    border-radius: 8px;
    box-sizing: border-box;
}

/* イベントの前の縦線を削除 */
.calendar-list-event::before {
    display: none;
}

.calendar-list-event:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.calendar-list-no-events {
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin: 20px 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-member-row, .event-member-badges {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 5px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.member-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.member-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* モバイル端末ではホバー効果を無効化 */
@media (max-width: 768px) {
    .member-badge:hover {
        transform: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
}

.event-title-row, .event-title {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    word-break: break-word;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.event-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    padding: 2px 0;
}

/* リストビューをスクリーンショットに合わせるための追加スタイル */
.calendar-list-item {
    position: relative;
}

/* リスト項目の前の縦線を削除 */
.calendar-list-item::before {
    display: none;
}

/* 週末リスト項目の縦線を削除 */
.calendar-list-item.weekend::before {
    display: none;
}

.calendar-list-item.weekend .calendar-list-day {
    color: #ff8c8c;
}

.calendar-list-item.weekend:hover .calendar-list-day {
    color: #ffb3b3;
}

/* モバイル端末ではホバー効果を無効化 */
@media (max-width: 768px) {
    .calendar-list-item.weekend:hover .calendar-list-day {
        color: #ff8c8c; /* 元の色を維持 */
    }
}

.calendar-list-item.today {
    background: rgba(52, 232, 158, 0.1);
    border: 2px solid #34e89e;
    position: relative;
    animation: todayPulse 2s infinite alternate;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    /* タッチデバイスでのタップ時の動作を調整 */
    .calendar-list-item, .calendar-list-event, .member-badge, .calendar-nav-btn, .today-btn, .download-btn {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }

    .calendar-grid {
        display: none;
    }

    .calendar-list-view {
        display: block;
        width: 100%;
    }

    .calendar-header {
        padding: 10px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .calendar-nav-container {
        display: flex;
        justify-content: center; /* 中央揃え */
        align-items: center;
        gap: 20px; /* ボタン間の間隔を増やす */
        margin-bottom: 10px;
        width: 100%; /* 全幅を使用 */
        max-width: 300px; /* 最大幅を制限 */
    }

    .calendar-title {
        font-size: 1.2rem;
        width: auto;
        text-align: center;
        margin-bottom: 5px;
        position: relative;
        left: auto;
        transform: none;
    }

    /* モバイル端末の日付表示をよりコンパクトに */
    .calendar-title .title-part {
        margin: 0;
        letter-spacing: 0;
        padding: 0 1px;
    }

    .calendar-nav-btn {
        width: 50px;
        height: 50px;
        padding: 10px;
        font-size: 1.2rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }

    .calendar-nav-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: none; /* ホバー効果を削除 */
        box-shadow: 0 3px 10px rgba(0,0,0,0.2); /* 元のシャドウを維持 */
    }

    .today-btn {
        padding: 8px 15px;
        font-size: 0.95rem;
        min-width: 80px;
        border-radius: 25px;
        background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
        color: white;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }

    .today-btn:hover {
        background: linear-gradient(90deg, #ff8e8e, #ff6b6b);
        transform: none; /* ホバー効果を削除 */
        box-shadow: 0 3px 10px rgba(0,0,0,0.2); /* 元のシャドウを維持 */
    }

    .calendar-container {
        border-radius: 10px;
        box-shadow:
            0 5px 15px rgba(0,0,0,0.2),
            0 0 0 5px #2a2a4e,
            0 0 0 8px rgba(255,255,255,0.1);
        width: 90%;
        margin: 20px auto;
    }

    .calendar-wrapper {
        padding: 0;
    }

    .calendar-list-item {
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .calendar-list-date {
        width: 120px;
        box-sizing: border-box;
    }

    .calendar-list-content {
        flex-direction: column;
        width: 100%;
    }

    .calendar-list-event {
        margin-left: 0;
        margin-top: 5px;
        width: 100%;
        box-sizing: border-box;
    }

    .event-title-row {
        width: 100%;
        box-sizing: border-box;
    }

    .event-member-row {
        width: 100%;
        box-sizing: border-box;
    }

    /* モバイル端末で過去の月のスタンプのサイズを調整 */
    .past-month-stamp {
        font-size: 3rem;
        border: 4px solid rgba(255, 0, 0, 0.4);
        padding: 8px 20px;
        max-width: 80%;
        white-space: nowrap;
    }

    .past-month-list-stamp {
        font-size: 2.5rem;
        border: 3px solid rgba(255, 0, 0, 0.4);
        padding: 6px 15px;
        max-width: 70%;
    }
}

/* 小型画面デバイスのさらなる調整 */
@media (max-width: 480px) {
    /* スタンプサイズの調整 */
    .past-month-stamp {
        font-size: 2rem;
        border: 3px solid rgba(255, 0, 0, 0.4);
        padding: 5px 15px;
        max-width: 70%;
    }

    .past-month-list-stamp {
        font-size: 1.8rem;
        border: 2px solid rgba(255, 0, 0, 0.4);
        padding: 4px 10px;
        max-width: 60%;
    }

    /* 月タイトル内の小さなスタンプを調整 */
    .month-title-stamp {
        font-size: 0.7rem;
        padding: 1px 6px;
        margin-left: 10px;
        color: #ff3333; /* モバイル端末でも鮮やかな赤色を使用 */
    }

    /* モバイル端末で中央の大きなスタンプを非表示 */
    .past-month-stamp, .past-month-list-stamp {
        display: none;
    }

    /* ナビゲーションレイアウトの調整 */
    .calendar-nav-container {
        width: 90%; /* 小型画面で幅の比率を増加 */
        max-width: 280px;
    }

    .calendar-nav-btn {
        width: 36px;
        height: 36px;
        padding: 6px;
        font-size: 0.9rem;
    }

    .today-btn {
        padding: 7px 12px;
        font-size: 0.9rem;
        min-width: 70px;
    }

    .title-container {
        width: 100%;
        margin-top: 10px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .calendar-title {
        margin: 0 auto;
        position: relative;
        left: auto;
        transform: none;
    }

    /* 小型画面デバイスの日付表示をよりコンパクトに */
    .calendar-title .title-part {
        margin: 0;
        letter-spacing: 0;
        padding: 0;
    }

    .download-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 8px;
        background: rgba(255, 255, 255, 0.2); /* 半透明の白い背景、ガラス質感を復元 */
        border: 1px solid rgba(255,255,255,0.4);
        box-shadow:
            0 2px 8px rgba(0,0,0,0.2),
            inset 0 1px 1px rgba(255,255,255,0.6);
        backdrop-filter: blur(5px); /* ぼかし効果を追加してガラス質感を強化 */
        -webkit-backdrop-filter: blur(5px);
    }

    .download-btn:hover {
        transform: translateY(-50%); /* スケール効果を削除 */
        background: rgba(255, 255, 255, 0.2); /* 元の背景色を維持 */
    }
}

/* イベントタイプの色 - モダンでクールなスタイル */
.event-live {
    --event-color-start: #00c6ff;
    --event-color-end: #0072ff;
}

.event-live::before {
    background: linear-gradient(to bottom, #00c6ff, #0072ff);
}

.event-online {
    --event-color-start: #34e89e;
    --event-color-end: #0f3443;
}

.event-online::before {
    background: linear-gradient(to bottom, #34e89e, #0f3443);
}

.event-festival {
    --event-color-start: #f6d365;
    --event-color-end: #fda085;
}

.event-festival::before {
    background: linear-gradient(to bottom, #f6d365, #fda085);
}

.event-special {
    --event-color-start: #a18cd1;
    --event-color-end: #fbc2eb;
}

.event-special::before {
    background: linear-gradient(to bottom, #a18cd1, #fbc2eb);
}

.event-free {
    --event-color-start: #ff6b6b;
    --event-color-end: #ff8e8e;
}

.event-free::before {
    background: linear-gradient(to bottom, #ff6b6b, #ff8e8e);
}

/* 現在の日付をハイライト */
.calendar-list-item.highlight {
    background-color: rgba(255, 193, 7, 0.2);
}

/* 過去のイベントのスタイル */
.calendar-event.past-event {
    opacity: 0.7;
    color: #aaa;
}

.calendar-event.past-event .event-title {
    color: #aaa;
}

.calendar-list-event.past-event {
    opacity: 0.7;
}

.calendar-list-event.past-event .event-title-row {
    color: #aaa;
}

/* 已完成印章样式 */
.completed-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 2rem;
    font-weight: bold;
    color: rgba(255, 0, 0, 0.5);
    border: 4px solid rgba(255, 0, 0, 0.5);
    border-radius: 10px;
    padding: 5px 15px;
    z-index: 10;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

/* 过去月份的印章 - 显示在整个月份视图的中央 */
.past-month-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 6rem;
    font-weight: bold;
    color: rgba(255, 0, 0, 0.4);
    border: 8px solid rgba(255, 0, 0, 0.4);
    border-radius: 20px;
    padding: 15px 40px;
    z-index: 100;
    pointer-events: none;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 列表视图中过去月份的印章 */
.past-month-list-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 3rem; /* 减小字体大小 */
    font-weight: bold;
    color: rgba(255, 0, 0, 0.4);
    border: 4px solid rgba(255, 0, 0, 0.4); /* 减小边框宽度 */
    border-radius: 12px;
    padding: 8px 20px; /* 减小内边距 */
    z-index: 100;
    pointer-events: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    max-width: 80%; /* 限制最大宽度 */
    box-sizing: border-box;
    white-space: nowrap; /* 防止文本换行 */
}

/* 月份标题中的小印章 */
.month-title-stamp {
    display: inline-block;
    position: relative;
    margin-left: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #ff3333; /* 鲜艳的红色 */
    border: none; /* 移除边框 */
    border-radius: 5px;
    padding: 2px 8px;
    transform: none; /* 无倾斜角度 */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    box-shadow: none; /* 移除阴影 */
    background-color: transparent; /* 透明背景 */
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}

/* WithLive主题标签样式 */
.calendar-event .theme-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    margin: 0 5px;
    font-size: 0.9em;
    font-weight: bold;
    color: #fff;
}

/* 通常 */
.calendar-event .theme-tag-normal {
    background: #0088cc;
    color: #fff;
}

/* 屋外1 */
.calendar-event .theme-tag-outdoor1 {
    background: #ff9900;
    color: #fff;
}

/* 屋外2 */
.calendar-event .theme-tag-outdoor2 {
    background: #ff00cc;
    color: #fff;
}

/* 屋外3 */
.calendar-event .theme-tag-outdoor3 {
    background: #4ecdc4;
    color: #fff;
}

/* 衣装 */
.calendar-event .theme-tag-costume {
    background: #a17fe0;
    color: #fff;
}

/* 趣味の部屋 */
.calendar-event .theme-tag-hobby {
    background: #26de81;
    color: #fff;
}

/* おやすみ */
.calendar-event .theme-tag-goodnight {
    background: #45aaf2;
    color: #fff;
}

/* 自宅 */
.calendar-event .theme-tag-home {
    background: #f4a460;
    color: #fff;
}

/* その他 */
.calendar-event .theme-tag-others {
    background: #778ca3;
    color: #fff;
}

/* HTMLから移動したインラインスタイル */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ページヘッダーコンテナスタイル */
.pageHead__container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}

/* テーマタグ説明ボタンコンテナスタイル */
.theme-tag-info-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  width: 100%;
}

/* テーマタグ説明ボタンスタイル */
.theme-tag-info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(76, 175, 80, 0.85);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  letter-spacing: 0.5px;
  height: 36px;
}

.theme-tag-info-btn:hover {
  background-color: rgba(76, 175, 80, 0.95);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.theme-tag-info-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.theme-tag-info-btn i {
  margin-right: 6px;
  font-size: 18px;
}

/* テーマタグモーダルスタイル */
.theme-tag-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  animation: fadeIn 0.3s;
  /* ページ全体のぼかし効果を削除 */
}

@keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}

.theme-tag-modal-content {
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 0 40px rgba(255, 255, 255, 0.1);
  animation: slideIn 0.4s;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes slideIn {
  from {transform: translate(-50%, -60%); opacity: 0; scale: 0.9;}
  to {transform: translate(-50%, -50%); opacity: 1; scale: 1;}
}

.theme-tag-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.7), rgba(56, 142, 60, 0.7));
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.theme-tag-modal-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.theme-tag-modal-close {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 30px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.theme-tag-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.theme-tag-modal-body {
  padding: 24px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  max-height: 70vh;
  background-color: rgba(255, 255, 255, 0.1);
}

.theme-tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.theme-tag-item {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.theme-tag-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  background-color: rgba(255, 255, 255, 0.35);
}

/* 電子ガラスパネル効果を追加 */
.theme-tag-modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
  z-index: -1;
  pointer-events: none;
}

/* 反射効果を追加 */
.theme-tag-modal-content::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  transform: rotate(30deg);
  z-index: -1;
  pointer-events: none;
}

.theme-tag-container {
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.theme-tag {
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: inline-block;
}

.theme-tag-description {
  position: relative;
  z-index: 2;
}

.theme-tag-description p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  font-weight: 600;
  text-shadow: 0 0 1px rgba(255,255,255,0.7);
}

/* 電子ガラスパネルのエッジ発光効果を追加 */
.theme-tag-modal-content {
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.15),
              0 0 30px rgba(76, 175, 80, 0.1),
              0 10px 30px rgba(0,0,0,0.15);
}

/* タグの視認性を向上 */
.theme-tag {
  text-shadow: 0 0 1px rgba(0,0,0,0.3);
  font-weight: 600;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .theme-tag-grid {
    grid-template-columns: 1fr;
  }

  .theme-tag-modal-content {
    width: 95%;
    max-height: 85vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: mobileSlideIn 0.4s;
  }

  @keyframes mobileSlideIn {
    from {transform: translate(-50%, -60%); opacity: 0; scale: 0.9;}
    to {transform: translate(-50%, -50%); opacity: 1; scale: 1;}
  }

  .theme-tag-modal-header {
    padding: 15px 20px;
  }

  .theme-tag-modal-header h3 {
    font-size: 18px;
  }

  .theme-tag-modal-body {
    padding: 15px;
  }

  .theme-tag-item {
    padding: 15px;
    margin-bottom: 15px;
  }

  .pageHead__container {
    justify-content: center;
    width: 100%;
  }

  .theme-tag-info-container {
    margin: 15px 0 20px;
  }

  .theme-tag-info-btn {
    font-size: 13px;
    padding: 6px 12px;
    height: 32px;
  }

  .theme-tag-info-btn i {
    font-size: 16px;
  }

  .calendar-nav-container {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
  }

  .theme-tag-description p {
    font-size: 14px;
  }
}
