/* Navigation Tabs */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.75rem;
}

nav li {
  flex: 1;
}

nav a {
  display: block;
  padding: 0.6rem 1rem;
  text-align: center;
  background: #444;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  font-weight: 500;
  letter-spacing: 0.5px;
}

nav a:hover {
  background: #0a84ff;
  transform: translateY(-2px);
}

nav a[aria-current="page"] {
  background: #0a84ff;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Contact Info */
form {
  max-width: 600px;
  margin-left: 1rem;
  margin-right: 0;  
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  display: block;         
  margin-bottom: 0.25rem;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;            
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font: inherit;
}

fieldset {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column; 
  gap: 0.75rem;
}

button {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 6px;
  background: #0a84ff;
  color: #fff;
  cursor: pointer;
}

button[type="reset"] {
  background: #666;
}

/* Table base */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 1rem;
}

caption {
  text-align: left;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

th, td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: left;
}
