/* === Login boks === */
.elev-login-wrapper {
  max-width: 400px;
  margin: 40px auto;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #dceefb;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(90, 201, 244, 0.25);
}

.elev-login-wrapper h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #333;
}

.elev-login-wrapper label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.elev-login-wrapper input[type="text"],
.elev-login-wrapper input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cce9f7;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  transition: border-color 0.2s ease-in-out;
}

.elev-login-wrapper input[type="text"]:focus,
.elev-login-wrapper input[type="password"]:focus {
  border-color: #5ac9f4;
  outline: none;
  box-shadow: 0 0 0 3px rgba(90, 201, 244, 0.25);
}

.elev-login-wrapper input[type="submit"] {
  width: 100%;
  padding: 12px 14px;
  background: #76c169;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.elev-login-wrapper input[type="submit"]:hover {
  background: #68aa5b;
}

/* === Lektioner som cards === */
.lektion-list {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.lektion-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dceefb;
  box-shadow: 0 4px 16px rgba(90, 201, 244, 0.2);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.lektion-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(90, 201, 244, 0.3);
}

.lektion-card h4 {
  margin: 0 0 12px 0;
  font-size: 1.2rem;
  color: #333;
}

.lektion-meta {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.pickup {
  font-style: italic;
  color: #666;
}

/* Status labels */
.lektion-status {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  color: #fff;
}

.lektion-upcoming {
  background: #5ac9f4;
}

.lektion-done {
  background: #bbb;
}

/* Countdown badge */
.countdown {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(118, 193, 105, 0.1);
  color: #76c169;
  font-weight: 600;
  font-size: 14px;
}
