/* layout.css */
.layout {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
}

.layout header, .layout footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout .align-right button {
  height: 55px;
  width: 130px;
  border-radius: 10px;
  border: none;
  color: white;
  font-weight: bold;
  font-size: small;
  margin: 0 5px;
  background-color: #25252572;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.5), inset 0 -2px 4px rgba(255,255,255,0.1);
}

.layout .align-right button:hover {
  text-decoration: underline;
  cursor: pointer;
}

