@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('background.jpg');
    background-size: cover;
    background-attachment: fixed;
    backdrop-filter: blur(5px);
}

header {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#cheong3M-logo, #club-logo {
    height: 50px;
    width: auto;
}

.card {
    background-color: #fff;
    padding: 20px;
    margin: 10px auto; /* 카드 간격 조정 및 중앙 정렬 */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 95%;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    color: #555;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

@media (min-width: 768px) {
    .card {
        width: 75%;
    }

    footer {
        font-size: 0.8rem;
    }
}

@media (min-width: 1024px) {
    .card {
        width: 50%;
    }
}

.noscript-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.noscript-message {
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    text-align: center;
}

.surveyLink.active {
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}


.surveySubmitted {
    color: #008000;
    font-weight: bold;
}

.scheduleItem.future {
    background-color: #f0f0f0;
    color: #333;
}