html, body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  text-shadow: 0 .05rem .1rem rgba(0,0,0,.5);
  color: rgb(66,69,86);
  background-image: url('/images/background.jpeg'); /* or your current local path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-weight: 100;
}

.flex-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: auto;
}

h1{
  margin: 0;
  font-size: clamp(4rem, 18vw, 12rem);
  line-height: 0.9;
  font-weight: 100;
}

p {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
}

.form {
	line-height: 1.5;
	border: none;
	border-bottom: 3px solid #ebebeb;
	margin-top: 100px;
	width: 90%;
  max-width: 700px;
	font-size: 2.9em;
	color: white;
	padding: 5px 10px;
	background: transparent;
}

button {
  line-height: 2.0;
  border: 2px solid rgba(0,255,204,0.6); /* teal glow border */
  font-size: 1.9em;
  color: rgb(66,69,86);
  padding: 5px 30px;
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  opacity: 1;

  cursor: pointer;
  transition: all 0.2s ease;

  box-shadow: 0 0 8px rgba(0,255,204,0.3); /* subtle glow */
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35), 0 0 12px rgba(0,255,204,0.5);
  background: rgba(255,255,255,1);
}

button:active {
  transform: translateY(1px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

input[type=text]:focus {
  outline: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255,255,255,0.8);
}

ul {
  list-style: none;
  padding: 0;
}

.message {
  margin-top: 20px;
  font-size: 1.5rem;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
}

.success {
  background-color: rgba(0, 200, 0, 0.8);
  color: white;
}

.error {
  background-color: rgba(200, 0, 0, 0.8);
  color: white;
}

.nav {
  margin-bottom: 20px;
}

.nav a {
  color: rgb(66, 69, 86);
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.2rem;
}

.nav a:hover {
  text-decoration: underline;
}

pre {
  text-align: left;
  background: rgba(0,0,0,0.7);
  color: #00ffcc;
  padding: 15px;
  border-radius: 5px;
  overflow-x: auto;
  max-width: 100%;
}

/* SIMPLE TABLE (clean + minimal) */
.simple-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: rgba(255,255,255,0.85);
  color: rgb(66,69,86);
  text-shadow: none;
}

.simple-table th,
.simple-table td {
  border: 1px solid rgba(66,69,86,0.2);
  padding: 8px 10px;
  text-align: left;
}

.simple-table th {
  background: rgba(66,69,86,0.15);
}


/* STYLED TABLE (dashboard look) */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: rgba(0,0,0,0.75);
  color: #00ffcc;
  font-size: 0.95rem;
  text-shadow: none;
  border-radius: 8px;
  overflow: hidden;
}

.styled-table th,
.styled-table td {
  padding: 10px 12px;
  text-align: left;
}

.styled-table th {
  background: rgba(0,255,204,0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.styled-table td {
  border-bottom: 1px solid rgba(0,255,204,0.2);
}

.styled-table tbody tr:nth-child(even) {
  background: rgba(0,255,204,0.05);
}

.styled-table tbody tr:hover {
  background: rgba(0,255,204,0.15);
  cursor: pointer;
}

.active-step {
  border: 2px solid #00ffcc !important;
  background: rgba(0,255,204,0.15) !important;
  color: rgb(66,69,86);
  box-shadow: 0 0 12px rgba(0,255,204,0.6);
}

.nav-link {
  color: rgb(66, 69, 86);
  text-decoration: none;
  margin: 0 5px;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-link.active {
  color: #00cc99;
  font-weight: 400;
  border-bottom: 2px solid #00ffcc;
  padding-bottom: 2px;
}