/* Top navy blue band styles */
.top-band {
  width: 100%;
  background-color: #001f3f;
  padding: 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
}
.top-title {
  color: #fff;
  margin: 0;
  font-size: 2.2em;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 0 16px;
  line-height: 60px;
  text-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
}
/* Board and container styles for Nine Men's Morris */
body {
  background: #f6f8fa;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.morris-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.morris-board {
  position: relative;
  width: 440px;
  height: 440px;
  margin: 24px auto 0 auto;
  background: linear-gradient(135deg, #fafdff 80%, #e3eaf2 100%);
  border: 3.5px solid #1976d2;
  border-radius: 16px;
  box-shadow: 0 2px 16px #b0c4de44;
  transition: box-shadow 0.2s;
}
