@charset "UTF-8";
body {
  background-color: #051923;
}

.content {
  margin-left: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  background: #003554;
  color: #0582CA;
}

.classes_card {
  background-color: #00A6FB;
  color: white;
  padding: 20px;
  margin-left: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  width: 100%;
  width: 100px;
  height: 80px;
  align-items: center;
}

.Headboard {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 10px;
  text-decoration: underline;
}

.logout {
  background-color: #1a73e8;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.account {
  color: seashell;
  font-weight: bold;
}

.container {
  display: flex;
  flex-direction: row; /* ← important */
  align-items: flex-start;
}

.Sidcontainer {
  display: flex;
  align-items: flex-start;
}

.Sidmenu {
  width: 200px;
  flex-shrink: 0;
  background-color: #003554;
  border: solid 3px blue;
  border-radius: 15px;
}
.Sidmenu ul {
  list-style: none;
  padding: 0;
}
.Sidmenu ul li {
  margin-bottom: 10px;
}
.Sidmenu ul li a {
  text-decoration: none;
  color: seashell;
  font-weight: bold;
  display: block;
  padding: 0.5em;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.Sidmenu ul li a:hover {
  background-color: #0a4885;
}

.Menu_main {
  display: grid;
  padding: 10px;
  max-width: 1000px;
  color: seashell;
}

.Menu_start_info {
  font-weight: bolder;
  color: white;
  text-decoration: underline;
}

.link_activ {
  background-color: rgb(31, 52, 157);
  border-radius: 4px;
}

.link_unactiv {
  background-color: #97c0ea;
  border-radius: 4px;
}

.infocontainer {
  flex: 1;
  background-color: hsl(206, 76%, 65%);
  padding: 20px;
  border-radius: 5px;
  margin-left: 20px; /* space from sidebar */
}

.logincointeiner {
  background-color: hsla(206, 76%, 65%, 0);
  padding: 20px;
  border-radius: 5px;
  margin-left: 20px;
  color: seashell;
}

.loginmain {
  display: flex;
  flex-direction: column;
  color: seashell;
}

.login-wrapper {
  width: 100%;
  max-width: 350px;
}

.subtitle {
  color: rgb(0, 140, 255);
  font-size: 14px;
}

.login-card {
  flex-direction: column;
  border-radius: 10px;
  margin-left: 10px;
  align-items: center;
  color: seashell;
}

.login-card button:hover {
  background: #1d4ed8;
}

.Menu_table {
  width: 100%;
  border: solid 3px blue;
  border-radius: 5px;
  background-color: rgb(255, 145, 0);
}

.Menu_table th {
  background-color: #10843e;
  color: rgb(255, 0, 0);
}

.Menu_table td, .Menu_table th {
  padding: 15px;
  text-decoration: underline;
}

.kalendercontainer {
  display: flex;
  align-items: flex-start; /* keeps them aligned at top */
}

.kalendermain {
  display: flex;
  flex-direction: column;
  width: 20%;
  margin-left: 20px; /* space between menu and calendar */
  flex-grow: 1; /* lets calendar take remaining space */
  color: seashell;
}

#calendar-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.day {
  border: 1px solid #ddd;
  min-height: 50px;
  padding: 5px;
  cursor: pointer;
  background: rgb(150, 174, 230);
}

.weekdays {
  display: flex;
}

.weekdays div {
  flex: 1;
  text-align: center;
}

.day:hover {
  background: #a4d5ed;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-evenly; /* spreads them nicely */
  text-align: center;
  white-space: nowrap; /* prevents line breaks */
}

.calendar-button {
  background-color: #1a73e8;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.event {
  background: #1a73e8;
  color: white;
  padding: 2px 4px;
  margin-top: 3px;
  border-radius: 4px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .Sidcontainer {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
  }
  .Sidmenu {
    border-right: none;
    border-bottom: 1px solid #000000;
  }
  .link_activ {
    background-color: rgb(31, 52, 157);
    color: red;
    border-radius: 4px;
    width: 60%;
  }
  .link_unactiv {
    background-color: #97c0ea;
    border-radius: 4px;
    width: 60%;
  }
}/*# sourceMappingURL=index.css.map */