:root {
  --text: #333;
  --light-text: #6d6d6d;
  --primary: rgb(4 141 194);

  --dark-blue: #03474c;
  --medium-blue: #4a8a88;
  --light-blue: #86c3be;
  --dark-brown: #8d601f;
  --light-brown: #b87d27;

  --verified: #579544;
  --warning: #cf4f2c;
}

*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  color: var(--text);
  font-size: 100%;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 3rem;
  background: ghostwhite;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: "Cabin", serif;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}

/*----------------------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  line-height: 1.2;
  font-weight: 400;
  font-style: normal;
  color: var(--primary);
  letter-spacing: -.03em;
  font-optical-sizing: auto;
}

/*----------------------------------------------------------------------------*/

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 40
}

/*----------------------------------------------------------------------------*/

.controls {
  bottom: 0;
  width: 100%;
  height: 3rem;
  display: flex;
  position: fixed;
  background: white;
  align-items: center;
  justify-content: center;
}
.controls a {
  font-size: 30px;
  text-decoration: none;
  color: var(--dark-blue);
}

/*----------------------------------------------------------------------------*/

img.logo {
  width: 4rem;
  margin: 0 auto;
  padding-top: 1rem;
}

.main {
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0.2rem;
  max-width: 22rem;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.activity {
  padding: 0.8rem;
  background: white;
  margin-bottom: 2rem;
  border-radius: 1rem;
}

.option-needed {
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
  color: var(--warning);
}
.option-ok {
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
  color: var(--verified);
}

.group-contact {
  padding: 0.5rem;
  font-size: 1rem;
  text-align: center;
  background: #ffead4;
  border-radius: 0.4rem;
}

.message {
  color: var(--dark-blue);
  font-size: 1rem;
  padding: 1rem 0;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
  background: var(--light-blue);
  border-radius: 0.4rem;
}

/*----------------------------------------------------------------------------*/

.activity-bulk, 
.seating-bulk {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 0.3rem dashed var(--dark-brown);
}
.activity-bulk .group-member
.seating-bulk .group-member {
    padding: 1rem;
    background: white;
    margin-bottom: 1rem;
    border-radius: 0.4rem;
}
.group-member h3 {
  padding: 0;
}
.group-contact {
    margin-bottom: 1rem;
}

/*----------------------------------------------------------------------------*/

footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.7rem;
  font-family: 'Courier New', Courier, monospace;
}

.tartan {
  height: 2rem;
  margin: 0 auto 1rem;
  max-width: 1200px;
  background: transparent url(/img/tartan.png) repeat center center;
}