/* ホームページ専用スタイル */
.home-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

/* 簡素化された今日の日付表示 */
.today-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.today-card-simple {
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100% ;
}

.today-date-simple {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ナビゲーションと日付コンテンツのマージン調整 */
.home-content .day-navigation {
    margin-bottom: 2rem;
}

.home-content .day-content {
    margin-top: 2rem;
}