body {
  font-family: Arial, Helvetica, sans-serif;
  margin:0;
  background: white;
}
.message {
  background:black;
  color:white;
  padding:4px;
}
.close {
  float:right;
  cursor:pointer;
}
.nav {
  background: white;
  position:sticky;
  top:0;
  padding:15px;
  overflow:auto;
  border-bottom:#eeeeee 1px solid;
  z-index:1000;
}
.nav a {
  color:currentColor;
}
h1, h2 {
  font-weight: 800;
}
.section {
  text-align: center;
  min-height: 100vh;
  padding:10px;
  background:linear-gradient(to bottom, transparent, #eeeeee);
}
.banner h1 {
  font-weight: 900;
  font-size: 12vh;
}
.enticer {
  border:#89dafb 1px solid;
  border-radius: 111px;
  padding:5px;
}
.section p {
  color:grey;
}
button {
  padding:10px 20px;
  border-radius: 111px;
  border:none;
  background:#89dafb;
  color:black;
  cursor:pointer;
  transition:0.3s;
}
.secondary {
  background: white;
  border: 1px black solid;
}
button:hover {
  filter:brightness(90%);
}
button:active {
  filter:brightness(80%);
}
button[disabled] {
  filter:grayscale(100%);
  cursor:default;
}
.col-container {
  display: table;
  width: fit-content;
  margin:auto;
}
.col {
  display: table-cell;
  border-radius:10px;
  padding:5px;
  margin:10px;
}

/*Deployment*/

.depl {
  font-family:Arial, Helvetica, sans-serif;
  margin:0;
}
.depl h1 {
  font-weight: 900;
  background:black;
  color:white;
  margin:0;
  position:sticky;
  top:0;
  z-index:1000;
}
.depl h1, .depl h2 {
  text-align: center;
}
.depl button {
  padding:5px;
  background:black;
  color:white;
  border:transparent 2px solid;
  border-radius: 3px;
  cursor:pointer;
  transition:0.3s;
}
.depl button:hover {
  filter:brightness(60%);
}
.depl button:active {
  border:#06bcf9 2px solid;
}
.depl .red {
  float:right;
  background:#dd370e;
}
.depl .logs {
  background:black;
  color:white;
  font-family:'Courier New', Courier, monospace;
  padding:5px;
  border-radius: 3px;
  overflow:auto;
  white-space: nowrap; /* Added to prevent wrapping */
  box-sizing: border-box;
  max-height:300px;
}
.depl .logs span {
  display:block;
}
.depl .logs ::selection {
  background:white;
  color:black;
}
.depl .tabs {
  display:flex;
}
.depl .tab {
  flex:1;
  padding:10px;
  text-align: center;
  background:#156e84;
  color:white;
}
.depl .load:before {
  width: 12px;
  height: 12px;
  border: 1px solid white;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin-right:4px;
  content:'';
}

@keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
.depl .cmd {
  color:#acac02;
}
.depl .cmd::selection {
  color:black;
  background:#acac02;
}
.depl dialog {
  position:fixed;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
}
.depl table {
  border-collapse: collapse;
  width: 100%;
}
.depl td, .depl th {
  border: 1px solid #dddddd;
  padding: 8px;
}

.depl tr:nth-child(even) {
  background-color: #eeeeee;
}
.depl details *:not(summary) {
  margin-left:10px;
}
.depl button[disabled] {
  background:grey;
  cursor:default;
}
.depl textarea,.depl input[type='text'] {
  border-radius: 100px;
  box-sizing: border-box;
  padding:10px;
  border:black 1px solid;
  font-family: Arial, Helvetica, sans-serif;
}
.depl textarea:focus,.depl input[type='text']:focus {
  outline:deepskyblue 5px solid;
}
.depl textarea {
  width:100%;
}
.depl .blockquote {
  background:#eeeeee;
  width:50%;
  margin:auto;
  border-left:lightgreen 4px solid;
  padding:10px;
}
