:root {
  --sinine: #1848CC;
  --tumesin: #20315C;
  --beez: #F2D6AF;
  --punane: #ED5234;
}

body {
  font-family: "Lexend Deca", sans-serif;
  background: linear-gradient(160deg, #f7f9ff, #eaf0ff);
  color: var(--tumesin);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1100px;
  margin: 60px auto;
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

h1 {
  font-size: 32px;
  color: var(--sinine);
  margin-bottom: 25px;
  font-weight: 600;
}

a.logout {
  float: right;
  color: var(--punane);
  text-decoration: none;
  font-weight: 500;
}
a.logout:hover {
  text-decoration: underline;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.orders-table th {
  background: var(--sinine);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 16px;
  font-size: 13px;
}

.orders-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eef2ff;
}

.orders-table tr:hover {
  background: #f2f6ff;
}

.login-box {
  max-width: 400px;
  margin: 120px auto;
  background: rgba(255,255,255,0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  backdrop-filter: blur(12px);
}

.login-box input {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.login-box button {
  width: 100%;
  background: var(--sinine);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}
.login-box button:hover {
  background: var(--tumesin);
}

.error {
  background: var(--punane);
  color: white;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: center;
}