            /* 오버레이 (어둡게 처리하는 배경) */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        /* 모달 컨테이너 - 배경 제거 */
        .modal-container {
            position: relative;
            background-color: transparent; /* 배경을 투명하게 만듭니다. */
            padding: 0; /* 패딩을 제거하여 이미지와 버튼만 남깁니다. */
            box-shadow: none; /* 그림자 효과를 제거합니다. */
            max-width: 90%;
            width: 50dvh;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        /* 이미지와 닫기 버튼을 포함하는 래퍼 */
        .image-wrapper {
            position: relative;
            display: inline-block;
        }
        /* 팝업 이미지 */
        .modal-image {
            border-radius: 8px;
            width: 100%;
            height: auto;
        }
        /* 이미지 닫기 버튼 (X) */
        .close-image-button {
            position: absolute;
            top: 8px; /* 상단에서 8px 떨어뜨립니다. */
            right: 8px; /* 오른쪽에서 8px 떨어뜨립니다. */
            width: 32px;
            height: 32px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border-radius: 50%; /* 동그란 모양 */
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            transition: background-color 0.2s, transform 0.2s;
        }
        .close-image-button:hover {
            background-color: rgba(0, 0, 0, 0.7);
            transform: scale(1.1); /* 호버 시 약간 커집니다. */
        }
        /* '오늘 다시 보지 않기' 버튼 스타일 */
        .today-close-button {
            background-color: transparent;
            color: #d1d5db; /* 글자색을 밝게 변경하여 어두운 배경에서 잘 보이게 합니다. */
            font-size: 17px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            text-decoration: underline;
          text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }

		.eventview{
			display: flex;
		}