#base {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.search-container {
  width: 30%;
}

.table-container {
  width: 65%;
}

#searchForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

#searchInput::placeholder {
  color: #ccc;
}

#searchForm button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #726cf9;
  color: #fff;
  cursor: pointer;
}

#searchForm button:hover {
  background-color: #5a54d1;
}

#requestsTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(30, 25, 128, 1);
}

#requestsTable th,
#requestsTable td {
  padding: 10px;
  text-align: left;
}

#requestsTable th {
  background-color: #050613;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}

#requestsTable tbody tr:nth-child(even) {
  background-color: rgba(30, 25, 128, 1);
}

#requestsTable tbody tr:nth-child(odd) {
  background-color: rgba(2, 0, 57, 1);
}

input, select {
  border: none;
  background-color: #0d0d0d;
}

.date-range {
  display: flex;
  align-items: center;
  gap: 10px;
}

.date-range p {
  margin: 0;
  color: #fff;
}

.date-picker::placeholder {
  color: #ccc;
}

.details-button {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  background-color: #726cf9;
  color: #fff;
  cursor: pointer;
}

.details-button:hover {
  background-color: #5a54d1;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.page-button {
  width: 15px;
  aspect-ratio: 1;
  border: none;
  border-radius: 10px;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #726CF9;
}

.page-button.active {
  background-color: #726CF9;
}

.page-button:hover {
  background-color: #5a54d1;
  border: 2px solid #5a54d1;
}

.page-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.page-button:first-child,
.page-button:last-child {
  border: none;
  margin: 0 20px;
}

.page-button:first-child:hover,
.page-button:last-child:hover {
  border: none;
  margin: 0 20px;
  background-color: transparent;
}