html, body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(33,33,33,1) 100%);
  color: #e7e7e7; 
  margin: 0;
  padding: 20px;
}

h1 {
  color: #f7c340;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

div {
  margin-bottom: 10px;
}

label {
  color: #e7e7e7;
  margin-right: 5px;
}

input[type=text], select {
  padding: 8px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  width: 200px; 
  background-color: #333;
  color: #ddd;
}

input[type=text]:focus, select:focus {
  outline: none;
  box-shadow: 0 0 8px #f7c340;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #1c1c1c;
  border: 1px solid #444;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

th, td {
  text-align: center;
  padding: 10px;
  border: 1px solid #090915;
}

th {
  background-color: #444;
  color: #f7c340;
  font-size: 1em;
  text-shadow: 2px 2px 4px #000;
}

td {
  color: #e7e7e7;
  font-size: 0.9em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s ease;
}