@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

body {
  background-color: #1e1e2e;
  color: #cdd6f4;
  font-family: Roboto, sans-serif;
}

h1 {
  font-size: 3em;
  margin: 20px;
}

a {
  color: #b4befe;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
}

.box-games, .box-cal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: 200px;
}

.list {
  display: flex;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  justify-content: center;
  flex-wrap: wrap;
}

.game {
  background-color: #313244;
  padding: 10px;
  border-radius: 10px;
  border-bottom: 5px solid #b4befe;
  width: 350px;
  height: 390px;
  transition: 0.3s ease;
}
.game:hover {
  box-shadow: 0 0 8px #b4befe;
  scale: 1.015;
}
.game img {
  width: 350px;
  border-radius: 5px;
  border: 2px solid #6c7086;
}

.game-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 184px;
}
.game-info h2 {
  font-size: 1.7em;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkbox-row label {
  font-size: 1.3em;
}
.checkbox-row input {
  width: 20px;
  height: 20px;
  accent-color: #b4befe;
}

.sidebar {
  position: fixed;
  left: 0;
  width: 200px;
  height: 100%;
  background-color: #313244;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  border-right: 5px solid #b4befe;
}
.sidebar h2 {
  margin-bottom: 20px;
}
.sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar li {
  list-style-type: none;
  margin-bottom: 20px;
  color: #cdd6f4;
  font-size: 1.3em;
  transition: color 0.3s ease;
  cursor: pointer;
  font-weight: bold;
}
.sidebar li:hover {
  color: #b4befe;
}

#date-el {
  cursor: default;
}
#date-el:hover {
  color: #cdd6f4;
}

#calendar-table {
  border-collapse: collapse;
  width: 100%;
}
#calendar-table th, #calendar-table td {
  border: 1px solid #6c7086;
  padding: 10px;
  text-align: center;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
  width: 40px;
}
#calendar-table th:hover, #calendar-table td:hover {
  background-color: #6c7086;
  cursor: pointer;
}
#calendar-table th {
  background-color: #b4befe;
  color: #11111b;
  border: none;
}
#calendar-table th:hover {
  background-color: #b4befe;
  cursor: default;
}
#calendar-table .today {
  border: 3px solid #b4befe;
}

#calendar-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  font-size: 1.5em;
  font-weight: bold;
  background-color: #45475a;
}
#calendar-controls #cal-title {
  flex: 1;
  text-align: center;
  font-weight: bold;
}
#calendar-controls .cal-btn {
  background: transparent;
  border: 1px solid #6c7086;
  color: #cdd6f4;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
#calendar-controls .cal-btn:hover {
  background-color: #7f849c;
  color: #11111b;
}

#calendar-table td.future {
  opacity: 0.45;
  cursor: not-allowed;
}
#calendar-table td.future:hover {
  background-color: transparent;
}

.day-cell.selected {
  background-color: #b4befe;
  color: #11111b;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #313244;
  margin-top: 40px;
  margin-left: 200px;
  border-top: 5px solid #b4befe;
}

/*# sourceMappingURL=style.css.map */
