:root {
  --fc-today-bg-color: rgba(40, 174, 255, 0.15);
}
.fc .fc-daygrid-event {
  background: rgb(11,13,97);
  background: linear-gradient(180deg, rgba(11,13,97,1) 25%, rgba(0,161,255,1) 100%);
}
.wrapper {
  max-width: 1200px;
  margin: 20px auto 40px;
  font-family: 'Arial', sans-serif!important;
  font-size: 14px!important;
  padding: 0;
  margin: 0;
  min-height: 80vh;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.logo {
  width: 160px;
}
.logo img {
  width: 100%;
}
.lang-btn {
  background: transparent;
  border: 1px solid #aaa;
  color: #444;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background 0.15s, border-color 0.15s;
}
.lang-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: #666;
}
#calendar {}
.evdata {
  padding: 5px 4px;
}
.evtitle {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  border: 1px solid;
  border-radius: 8px;
  max-width: 92%;
  margin: 10px auto 0;
}
.tourtimes {
  display: flex;
  gap: 10px;
  font-size: 14px;
  justify-content: center;
}
.starttime {
  border-right: 1px solid;
  padding: 0 10px 0 0;
}
.endtime {}
.moondata {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 8px;
}
.moonphase {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 3px;
}
.illum {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  font-size: 10px;
  border: 1px solid;
}
.sundata {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 8px;
}
.sunsetpic {
  width: 31px;
}
.sunset {}
@media only screen and (max-width: 667px) {
  .evtitle {
    font-size: 12px;
    border-radius: 4px;
    max-width: 92%;
    margin: 10px auto 0;
  }
  .tourtimes {
    gap: 5px;
    font-size: 11px;
    text-align: center;
    flex-direction: column;
  }
  .starttime {
    border-right: 0;
    padding: 0;
  }
  .moondata, .sundata {
    display: none;
  }
}