html {
  height: 100%;
  width: 100%;
}

body {
  background-color: #ededed;
}

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 90%;
  height: 500px;
  background-color: #ededed;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  transition: 0.3s;
  padding-top: 50px; /* Add padding to create space for h1 */
}

.logo {
  margin: 0;
  font-family: Jetbrains Mono;
  padding: 5px;
  border-radius: 5px;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.logo:hover {
  background-color: #EFEEEE;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  transform: scale(1.04);
}

.logo:active {
  transform: scale(0.95);
}

.schedule-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically 
  */
}

.schedule-container .day-bar {
  width: 120px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.schedule-container .day-bar h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
}

.schedule-container .event-btn {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #dadada;
  color: #333;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  outline: none;
  transition: background-color 0.3s;
}


.event-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .1);
  background-color: #d9d9d9;
  text-align: center;
  margin-left: 15px;
  font-family: Jetbrains Mono;
  border-radius: 7px;
  box-shadow: 0 5px 0 rgb(202, 202, 202), 0 15px 20px rgba(0, 0, 0, 0.05);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  transition: all 0.5s;
  margin: 10px;
}

.event-btn.active {
  box-shadow: 0 0 0 rgb(202, 202, 202), 0 15px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(2px) scale(1.05);
  background-color: #b1d892;
}

h3 {
  font-weight: 400;
  margin: 0;
  font-family: Jetbrains Mono;
  padding: 5px;
  border-radius: 5px;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h3:hover {
  background-color: #EFEEEE;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  transform: scale(1.04);
}

h3:active {
  transform: scale(0.95);
}

.day-bar {
   box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 3px;
  border-radius: 10px;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}



@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.container {
  animation: fade-in 2s forwards;
}

@keyframes fade-in {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.footer {
  font-family: Jetbrains Mono;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #EFEEEE;
  padding: 10px;
  border-radius: 5px;
  transition: 0.3s;
}


.footer:hover {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  transform: scale(1.04);
}

.footer:active {
  transform: scale(0.95);
}