.custom-switch {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  align-items: center;
}

.custom-switch input[type="radio"] {
  display: none;
}

.custom-switch label {
  padding: 12px 35px;
  font-weight: bold;
  color: #fff;
  background: #6c757d; /* Neutral color when not active */
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s;
  margin: 0 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.custom-switch input[type="radio"]:checked + label {
  background: #42909b;
  color: #fff;
}

#dataDisplay {
  border-top: 2px solid #dee2e6;
  padding-top: 20px;
  margin-top: 20px;
  overflow-x: auto;
}

.search-bar {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.search-input {
  width: 80%;
  padding: 10px;
  border: 2px solid #007bff;
  border-radius: 20px;
  outline: none;
  transition: all 0.3s;
}

.search-input:focus {
  border-color: #0056b3;
  box-shadow: 0 0 8px rgba(0, 86, 179, 0.5);
}

#dataDisplay::-webkit-scrollbar {
  display: none;
}

.no-data {
  text-align: center;
  margin-top: 20px;
  color: red;
  font-size: 18px;
  font-weight: bold;
}

.btn-download {
  padding: 8px 16px;
  margin-top: 20px;
  background-color: #4caf50; /* Green */
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.btn-download:hover {
  background-color: #45a049;
}
