input:not([type=checkbox]) {
    text-align: center;
    width: 40vw;
    font-size: 24px;
}


h1 {
    font-weight: 500;
    font-size: clamp(1.5rem, 3.5vw, 4rem);
    margin-block-end: 0.1em;
}

h2 {
    font-weight: 400;
    font-size: clamp(1.5rem, 3.5vw, 4rem);
    margin-block-start: 0.1em;
    margin-block-end: 0.1em;
    text-align: center;
}

.request {
    margin: 0.2em;
    border: 1px solid grey;
    border-radius: 4px;
    padding 0.2em;
}

.request.unconfirmed {
    background: #ffffc0;
}

.request.full {
    background: #ffc0c0;
}

.request.confirmed {
    background: #c0ffc0;
}

.request > .name { font-weight: bold; }
.request > .role { display: block; text-align: center; }
.request > .status { font-weight: bold; display: block; text-align: right; padding:0 1em; }

.notes textarea {
    box-sizing: border-box;
    width: 100%;
    height: 6em;
    padding: 8px;
    font-size: 24px;
}

.center{
    display: block;
    margin: 10px auto;
}

.inset {
    margin-left: 1em;
    margin-right: 1em;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.flex_columns_parent {
    display: flex;
    flex-flow: row wrap;
    gap: 4px;
    justify-content: space-around;
}

.flex_columns_parent > div {
    flex: 0 0 164px;
}

.cardheader {
    background-color: #404080;
    color: white;
}

.cb_vendor {
    flex: 0 0;
    position:relative;
    padding: 4px 8px;
    background-color: #404080;
    color: white;
    font-weight: 200;
    border-radius: 20px;
    border: 1px solid grey;
}

.cb_vendor > .cover {
    cursor: pointer;
    position: absolute;
    left: 0;
    top:  0;
    width:  100%;
    height: 100%;
}

.cb_vendor > input[type='checkbox'] { position:relative; top: -3px; }
.cb_vendor > label {
    margin-left: 1em;
}

.wbutton {
    flex: 0 0;
    margin-top: 1em;
    font-size: 17px;
    padding: 1em 2.7em;
    font-weight: 500;
    background: white;
    color: black;
    border: 1px solid darkgrey;
    position: relative;
    border-radius: 0.6em;
    cursor: pointer;
}

.wbutton:hover {
	box-shadow:inset 0px 1px 0px 0px #f29c93;
}
.wbutton:active {
    transform: scale(0.97);
}

.vendprefs {
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}

.vendprefs > .cb_vendor {
    margin-bottom: 2px;
}

.vendprefs .prefs {
    padding-left: 0.5em;
}

.inter-heavy {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.inter-med {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 150;
  font-style: normal;
}

/* From Uiverse.io by cssbuttons-io */
.abutton {
  flex: 0 0;
  margin-top: 1em;
  font-size: 17px;
  padding: 1em 2.7em;
  font-weight: 500;
  background: #1c3cdf;
  color: white;
  border: none;
  position: relative;
  border-radius: 0.6em;
  cursor: pointer;
}

.gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0.6em;
/*
  margin-top: -0.25em;
  background-image: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.3)
  );
*/
}

.label {
  position: relative;
  top: -1px;
}

.transition {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 500ms;
  background-color: rgba(128, 179, 255, 0.6);
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 0.6em;
}

.abutton:hover .transition {
  height: 100%;
}

.abutton:active {
  transform: scale(0.97);
}

.AlertButton {
	box-shadow:inset 0px 1px 0px 0px #f29c93;
	background:linear-gradient(to bottom, #fe1a00 5%, #ce0100 100%);
	background-color:#fe1a00;
	border-radius:6px;
	border:1px solid #d83526;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #b23e35;
    text-align: center;
}
.AlertButton:hover {
	background:linear-gradient(to bottom, #ce0100 5%, #fe1a00 100%);
	background-color:#ce0100;
}
.AlertButton:active {
	position:relative;
	top:1px;
}

