/* Nền phủ toàn trang */

.event-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  overflow: auto;
}

/* Nội dung popup cuộn được nếu cao hơn 1000px */
.event-popup-content {
  background: #1e1e1e;
  color: white;
  width: 60%;
  max-width: 1050px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 10px;
  max-height: 750px;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-family: Cabin, sans-serif;
  position: relative;
}

/* Nút đóng */
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 68px;
  cursor: pointer;
  color: #cccc00;
}

/* Bảng sự kiện */
.event-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.event-table th, .event-table td {
  padding: 8px 10px;
  max-width: 160px;
  word-break: break-word;
  border: 1px solid #444;
  text-align: left;
}

/* Màu thời gian */
.time-green {
  color: #4CAF50;
  font-weight: bold;
}

.time-white {
  color: white;
}
