.draw {
  border: 1px solid grey;
  margin: 5px;
  font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
  padding: 10px;
}

header {
  background: linear-gradient(135deg, rgba(6, 6, 179, 0.9), rgba(30, 60, 200, 0.8));
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(23, 42, 216, 0.15);
  color: white;
  border-radius: 8px;
}

header h2 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.error-message {
  top: 100%;
  left: 0;
  z-index: 10;
  display: block;
  padding: 0.5em;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  font-size: 0.875rem;
}

a.button {
  padding: 1px 6px;
  border: 1px outset buttonborder;
  border-radius: 3px;
  color: buttontext;
  background-color: buttonface;
  text-decoration: none;
}

a.button {
  display: inline-block;
  border-radius: 4px;
  background-color: rgba(14, 45, 180, 0.9);
  border: none;
  color: #FFFFFF;
  text-align: center;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
}

a.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

a.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

a.button:hover span {
  padding-right: 25px;
}

a.button:hover span:after {
  opacity: 1;
  right: 0;
}

.btn {
  margin-top: 5px;
  margin-bottom: 5px;
}

.date-display {
  background-color: rgba(240, 240, 240, 0.8);
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #333;
  border-left: 4px solid rgba(6, 6, 179, 0.7);
  border-right: 4px solid rgba(6, 6, 179, 0.7);
  text-align: center;
}