@import "https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap";
/* [project]/app/display/MainPage.css [app-client] (css) */
html, body {
  height: 100%;
}

.main-page {
  background-image: url("/background.jpg");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
}

.LeftSide {
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

.TimerAndProgram {
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  height: 20%;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.timer-panel {
  border-radius: 20px;
  flex: 3;
  justify-content: center;
  align-items: center;
  display: flex;
}

.program-panel {
  border-radius: 20px;
  flex: 1;
  align-items: stretch;
  display: flex;
}

.Graph {
  border-radius: 20px;
  flex: 1;
  justify-content: space-evenly;
  place-items: center;
  margin-bottom: 10px;
  display: flex;
  overflow: hidden;
}

.bluryBackground {
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  background: #ffffff26;
  border: 1px solid #ffffff40;
  box-shadow: 0 8px 32px #00000014, 0 0 1px #0000000d, inset 0 1px #ffffffe6, inset 0 -1px #00000008;
}

/* [project]/components/TimeSection.css [app-client] (css) */
.TimeSection {
  justify-content: space-evenly;
  place-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.timer {
  font-optical-sizing: auto;
  color: #0009;
  letter-spacing: -4px;
  text-align: center;
  flex: 1;
  width: auto;
  min-width: 380px;
  margin: 0;
  padding: 0 20px;
  font-family: Orbitron, sans-serif;
  font-size: 7.5vw;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.program-container {
  gap: 15px;
  height: 100%;
  padding: 0;
  display: flex;
}

.program-current-panel, .program-upcoming-panel {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #ffffff14;
  border: 1px solid #ffffff26;
  border-radius: 16px;
  flex-direction: column;
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px #00000014, inset 0 1px #fff6;
}

.current-header, .upcoming-header {
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  background: linear-gradient(135deg, #3498db1f 0%, #2980b914 50%, #3498db0d 100%);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  align-items: center;
  height: 60px;
  padding: 20px 24px;
  display: flex;
  position: relative;
  box-shadow: inset 0 1px #ffffff4d, 0 2px 8px #0000000a;
}

.upcoming-header {
  background: linear-gradient(135deg, #e67e221f 0%, #d3540014 50%, #e67e220d 100%);
}

.current-header .current-time, .upcoming-header .upcoming-label, .upcoming-header .upcoming-time {
  color: #000c;
  text-shadow: 0 1px 2px #fffc;
  font-weight: 700;
}

.current-content, .upcoming-content {
  flex: 1;
  padding: 24px;
}

.current-title {
  color: #000000e6;
  margin: 0 0 12px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.current-description {
  color: #000000b3;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.upcoming-title {
  color: #000000d9;
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.current-time {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #000c;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.upcoming-time {
  color: #000c;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.upcoming-description {
  color: #0009;
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.TimerContainer {
  justify-content: space-between;
  place-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.TimerHeader {
  writing-mode: vertical-rl;
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  color: #2b2b2bb3;
  background-color: #0000001a;
  border-radius: 0 20px 20px 0;
  justify-content: center;
  place-items: center;
  width: 50px;
  height: 100%;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  transform: rotate(180deg);
}

.CurrentTime {
  color: #161616b3;
  border-radius: 0 20px 0 0;
  padding: 10px;
  font-family: Orbitron, sans-serif;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
}

/*# sourceMappingURL=_00nw.61._.css.map*/