body {
  font-family: Arial, sans-serif;
  background: url("./background-floor-pattern-perspective-chess-600nw-481189450.webp")
    no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: rgba(
    0,
    0,
    0,
    0.8
  ); /* Darker background with some transparency */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  padding: 20px;
  width: 400px;
  color: #f4f4f4;
}

h1 {
  text-align: center;
  color: #f4f4f4;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  color: #f4f4f4;
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #555;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #333;
  color: #fff; /* Changed to white text */
}

button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #0056b3;
}

#results {
  margin-top: 20px;
}

.result-section {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
}

.result-section h2 {
  margin-top: 0;
  color: #007bff;
  font-size: 20px;
}

.result-section p {
  margin: 0;
  font-size: 16px;
  color: #f4f4f4;
}

.result-section strong {
  color: #f4f4f4;
}

.results-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.results-table div {
  display: table-row;
}

.results-table div > div {
  display: table-cell;
  padding: 10px;
  border: 1px solid #444;
  text-align: center;
}

.results-table .header {
  font-weight: bold;
  background-color: #333;
}
