.schedule_wrapper {
	display: flex; 
	gap: 0px;

}

.schedule__timeline {
	width: auto;
}
.schedule__timeline .legend__time,
.schedule__timeline .legend__time--small {
    position: relative;
    word-spacing: norwrap;
    width: 60px;
    text-align: right !important;
    padding-right: 5px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.80em;
    height: 60px;   
}

.schedule__timeline ul {
    list-style-type: none;
	margin: 0;
    padding: 0;
 }
.schedule__timeline .legend__time--small {
	font-size: 0.70em;
	color: #bcbcbc;
}

.weight--bold {
	font-weight: bold;
}

.column-group {
	width: 8px;
	background-image: url("../../assets/img/schedule-grid-v.png");
}
.schedule_inner {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.schedule_inner .schedule {
    overflow: visible;
    width: 100%;
    min-height: 1361px;
}

.schedule_inner .schedule {
	/**
    background-image: url("../../assets/img/schedule-grid-v.png");
    background-position: 0 0;
    **/
}

.schedule_inner .schedule  {
    margin: 0;
    padding-top: 0;
}

.schedule_inner .schedule .event .event__item .event__title .style_event {
    display: table;
    width: 100%;
    height: calc(100% - 25px);
    text-align: center;
}

.schedule_inner .schedule .event .event__item .event__title .style_event span {
    display: table-cell;
    text-align: center !important;
  	vertical-align: middle;
  	word-break: break-word;
  	text-transform: uppercase;
	font-optical-sizing: auto;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 500;
	line-height: 0.9;
	width: 150px;
}

.schedule_inner .schedule .event .event__item {
    position: absolute;
    width: 150px;
    overflow: hidden;
    z-index: 2;

}

.column-group.ganjil  {
  background-color: rgba(230, 230, 230, 0.5);
}

.column-group.genap {
  background-color: rgba(200, 200, 200, 0.5);
}

.hall-name:nth-child(odd) {
  background-color: rgba(230, 230, 230, 0.5);
  background-image: url("../../assets/img/schedule-grid-v.png");
}

.hall-name:nth-child(even) {
  background-color: rgba(200, 200, 200, 0.5);
  background-image: url("../../assets/img/schedule-grid-v.png");
}

.stage-name {
	height: 70px;
	display: flex;
	justify-content: center;
  	align-items: center;
  	font-size: 0.95em;
  	font-family: "Roboto Condensed", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	width: 150px;
}

.stage-name.ganjil  {
	background-color: rgba(50, 50, 50, 1);
	color: white;
}
.stage-name.genap {
	background-color: rgba(40, 40, 40, 1);
	color: white;
}

.event__item--indo {
	background-color: rgba(253, 132, 49, 0.95);
	color: white;
}

.event__item--inter {
	background-color: rgba(103, 24, 26, 0.95);
	color: white;
}

.event__item--info {
	background-color: rgba(255, 150, 190, 0.95);
	color: white;
}

.event__item--special {
	background-color: rgba(255, 12, 87, 0.95);
	color: white;
}

.time-schedule {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 0.6em;
	font-weight: 500;
	padding: 5px 10px 0px 10px;
}
.style_event {
	font-size: 0.65em;
	font-weight: 500;
	padding: 0px 10px 5px 10px;
}


/** Modal ----------- **/

.overlay {
  display: flex; /* Ubah dari none ke flex untuk kontrol */
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Class tambahan untuk memicu animasi */
.overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  transform: translateY(-20px); /* Posisi awal sedikit di atas */
  transition: transform 0.3s ease;
  background: white;
  padding: 20px;
  width: 80%;
  max-width: 1000px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
}

.overlay.active .modal-content {
  transform: translateY(0); /* Bergerak ke posisi asli */
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}

