#scheduleCard {
    background-color: #e7f4ff;
    color: #00529b;
}

.scheduleItem {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* 각 일정 사이 간격 */
}

.eventNumber {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #4677c2; /* 원의 배경색 */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px; /* 숫자 원과 이벤트 정보 사이의 간격 */
}

.scheduleHeader {
    font-size: 1.3em;
    color: #666;
}

.scheduleTitle {
    font-size: 2.2em;
    font-weight: bold;
    margin: 5px 0;
}

.scheduleDescription {
    font-size: 1.5em;
    margin: 5px 0;
}

.scheduleLink {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #4677c2;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.scheduleDivider {
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.completed .eventNumber {
    background-color: #d3d3d3; /* 진행 완료 이벤트의 숫자 원 색 변경 */
}

.completed .scheduleHeader,
.completed .scheduleTitle {
    color: #d3d3d3; /* 진행 완료 이벤트의 글자 색 변경 */
}

.current .eventNumber {
    background-color: #ff4500; /* 진행 중 이벤트의 숫자 원 색 변경 */
}

.completed .scheduleDescription,
.completed .scheduleLink {
    color: #d3d3d3; /* 회색으로 변경 */
}

.completed .scheduleLink {
    pointer-events: none; /* 링크 비활성화 */
    background-color: #a9a9a9; /* 버튼 배경색을 더 어두운 회색으로 변경 */
}