
.container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 50%;
}
.form {
  margin-top: 20px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  color: #666;
}

.form-input {
  width: 65%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.fetch-button {
  width: 30;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

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

/* /////////////// */

/* Table styles */
#transaction-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

#transaction-table th,
#transaction-table td {
  padding: 8px;
  border: 1px solid #ddd;
}

#transaction-table th {
  background-color: #f2f2f2;
  font-weight: bold;
  text-align: left;
}

#transaction-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

#transaction-table tbody tr:hover {
  background-color: #ddd;
}

/* Center the table */
.fetched-history-data {
  margin: 20px auto;
  max-width: 800px; /* Adjust as needed */
}
