/**
 * Copyright 2024 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */

:root {
  color-scheme: dark light;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 1rem;
  font-family: system-ui, sans-serif;
  max-width: clamp(320px, 90%, 1000px);
  margin: auto;
}

form {
  visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block: 1rem;
}

label {
  font-weight: bold;
}

textarea {
  display: block;
}

span {
  font-weight: normal;
}

p {
  font-variant: tabular-nums;
}

button {
  width: fit-content;
}

.not-supported-message {
  border: red solid 2px;
  padding: 0.25rem;
}

footer {
  margin-block: 1rem;
}

.button-style {
  padding: 1rem 2rem;
  font-weight: 700;
  background: rgb(255, 255, 255);
  color: #1967D2;
  cursor: pointer;
  border-radius: 0.5rem;
  border-bottom: 2px solid #1967D2;
  border-right: 2px solid #1967D2;
  border-top: 2px solid #1967D2;
  border-left: 2px solid #1967D2;
  transition-duration: 0.5s;
  transition-property: border-top, border-left, border-bottom, border-right, box-shadow, color;
}

.button-style:hover {
  color: #34A853;
  border-top: 2px solid #1967D2;
  border-left: 2px solid #1967D2;
  border-bottom: 2px solid rgba(52, 168, 83, 1);
  border-right: 2px solid rgba(52, 168, 83, 1);
  box-shadow: rgba(66, 133, 244, 1) 5px 5px, rgba(234, 67, 53, 1) 10px 10px,
    rgba(251, 188, 4, 1) 15px 15px;
}

