.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 nếu cao hơn 1000px */
.event-popup-content {
  background: #1e1e1e;
  color: white;
  width: 90%;
  max-width: 1080px;
  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;
}

.close-event {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 68px;
  cursor: pointer;
  color: #cccc00;
}

/* Bảng sự kiện */
.event-table {
  width: 1050px;
  table-layout: fixed;
  border-collapse: collapse;
  margin-top: 20px;
}

.event-table th,
.event-table td {
  padding: 6px 8px;
  border: 1px solid #444;
  vertical-align: top;
}

/* Kiểm soát width từng cột */
/* Count Time */
.event-counttime {
  width: 120px;
  text-align: center;
  white-space: nowrap;
}

.event-name {
  width: 150px;
  white-space: normal;
  overflow-wrap: break-word;
}
.event-subsv {
  width: 50px;
  text-align: center;
  white-space: nowrap;
}
.event-time {
  width: 200px;
  white-space: normal;
  word-break: keep-all;
}
.event-gift {
  width: 260px;
  white-space: normal;
  overflow-wrap: break-word;
}
.event-note {
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Màu thời gian */
.time-green {
  color: #33ffff;
  font-weight: bold;
}

.time-white {
  color: white;
}