/* 공통 스타일 */
.box.post {
    text-align: center;
    font-weight: 500;
}

/* 예배 시간 테이블 스타일 */
.table-container {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    margin-bottom: 20px;
}

.responsive-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.responsive-table th, .responsive-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.responsive-table thead {
    background: #4CAF50;
    font-size: 17px;
    color: white;
}

.responsive-table tbody {
    color: #222 !important;
}

.responsive-table tbody tr:hover {
    background: #f1f1f1;
}

/* 브로슈어 다운로드 스타일 */
.brochure-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.brochure-item {
    background: #4CAF50;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.brochure-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.brochure-link:hover {
    background: #45a049;
    transform: scale(1.05);
}

/* 반응형 스타일 */
@media (max-width: 600px) {
    .main-title {
        font-size: 20px;
    }

    .responsive-table th, .responsive-table td {
        padding: 8px;
        font-size: 14px;
    }

    .brochure-link {
        font-size: 14px;
        padding: 8px 12px;
    }
}
