/* Body styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  margin: 0;
  padding: 20px;
}

/* Container styles */
.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Heading styles */
h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table th,
table td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

/* File input styles */
.file-input {
  margin-bottom: 20px;
}

/* Select styles */
select {
  padding: 6px 10px;
  font-size: 16px;
}

/* Button styles */
button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

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

/* Switch styles */
.switch-group {
  margin-bottom: 20px;
}

.switch-group input[type="checkbox"] {
  display: none;
}

.switch-group label {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}

.switch-group label:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ccc;
}

.switch-group input[type="checkbox"]:checked + label:before {
  background-color: #007bff;
}

/* Selected values styles */
.selected-values {
  margin-bottom: 20px;
}

/* Result table styles */
.result-table {
  border-collapse: collapse;
}

.result-table th,
.result-table td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

/* Error message styles */
.error-message {
  color: red;
  margin-bottom: 20px;
}
