body {
  background-color: #0a1120;
  display: flex;
  flex-direction: column;
  margin: 24px;
  gap: 12px;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

select {
  border-radius: 8px;
  border: 2px solid #00bafe;
  background: none;
  height: 48px;
  width: 100%;
  max-width: 350px;
  box-sizing: border-box;
  padding: 8px 40px 8px 16px;
  outline: none;
  color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23FFFFFF' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

select::-ms-expand {
  display: none;
}

select option {
  background-color: #121c34;
  color: white;
}

select option:hover {
  background-color: #00bafe;
  color: #0a1120;
}

button {
  width: 100%;
  max-width: 350px;
  height: 48px;
  border-radius: 8px;
  border-style: none;
  font-size: 16px;
  background-color: #00bafe;
  color: #0a1120;
}

button:hover {
  background-color: #00b5f7;
}

h2 {
  color: white;
  margin-bottom: 4px;
}

.next-colles {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.list-status {
  color: #b7b7b7;
  transform: translate(0, -16px);
}

.colle-card {
  width: 100%;
  max-width: 350px;
  display: flex;
  background-color: #121c34;
  padding: 16px;
  border-radius: 8px;
  gap: 16px;
  box-sizing: border-box;
}

.colle-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.colle-card.show {
  opacity: 1;
  transform: translateY(0);
}

.date-square {
  background-color: #00bafe;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.day {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  color: #0a1120;
}

.month {
  margin: 0;
  margin-top: -6px;
  font-weight: bold;
  color: #0a1120;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.subject-name {
  color: white;
  margin: 0;
  font-size: 18px;
}

.card-text {
  color: #d9d9d9;
  margin: 0;
  font-size: 14px;
}

.info-icon {
  cursor: pointer;
  position: fixed;
  bottom: 12px;
  right: 12px;
}
