.celebration_area table {
    margin: 0 auto 50px;
    font-size: 1rem;
}
.celebration_area h6,
.upcoming_celebrations h6 {
    text-align: center;
    margin: 0 auto 20px;
    color: #2bc3ac;
    font-size: 1.2rem;
}

.upcoming_celebrations h6 {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 20px;
}
.celebration_content {
    padding: 10px 0;
    font-size: 0.9rem;
    color: #555;
}
.upcoming_celebrations {
    background-color: #f8f8f8;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
}
.upcoming_celebrations h5 {
    color: #d9534f;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}
.upcoming_celebrations .celebration-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ddd;
}
.upcoming_celebrations .celebration-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.upcoming_celebrations .event-title {
    font-weight: bold;
    color: #333;
}
.upcoming_celebrations .date-info {
    color: #666;
    font-size: 0.9em;
}
.upcoming_celebrations .days-left {
    color: #d9534f;
    font-weight: bold;
}
.add-to-calendar {
    display: inline-flex;
    align-items: center;
    background-color: #4285f4;
    color: #fff !important;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color 0.3s;
}
.add-to-calendar:hover {
    background-color: #3367d6;
}
table .material-symbols-outlined,
.calendar-icon {
    margin-right: 3px;
}
.text-muted {
    color: #999;
    font-size: 0.85em;
    font-style: italic;
}

/* RWD 相關樣式 */
@media screen and (max-width: 960px) {
    .celebration_area .pc-table {
        display: none;
    }
    .celebration_area .mobile-table {
        display: table;
        width: 100%;
        margin-bottom: 30px;
    }
    .celebration_area .mobile-table th {
        background-color: #f5f5f5;
        font-weight: bold;
        width: 30%;
        vertical-align: top;
        padding: 10px;
    }
    .celebration_area .mobile-table td {
        width: 70%;
        padding: 10px;
    }
    .celebration_area .mobile-table tr {
        border-bottom: 1px solid #eee;
    }
    .celebration_area .mobile-table tr:last-child {
        border-bottom: none;
    }
}

@media screen and (min-width: 961px) {
    .celebration_area .pc-table {
        display: table;
        width: 100%;
    }
    .celebration_area .mobile-table {
        display: none;
    }
}