.centerContainer {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

.centerContainer > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(45, 127, 249, 0.04);
}

th,
td {
  padding: 0.8rem 0.5rem;
  text-align: center;
}

th {
  background: #e9eefb;
  color: #2d7ff9;
  font-weight: 600;
}

tr:nth-child(even) {
  background: #f4f7fb;
}

tr:hover {
  background: #e3eefd;
}

td {
  color: #222;
}

#searchType {
  width: 100%;
  min-width: 120px;
  padding: 0.5rem 0.7rem;
  border: 1.5px solid #2d7ff9;
  border-radius: 6px;
  font-size: 1rem;
  background: #f8f9fa;
  color: #222;
  margin-bottom: 0.5rem;
  transition: border 0.2s;
}

#searchType:focus {
  border-color: #1a5fd0;
  outline: none;
}

#searchInput {
  width: 100%;
  padding: 0.5rem 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  box-sizing: border-box;
}

#searchButton {
  width: 100%;
  padding: 0.7rem;
  background: #2d7ff9;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

#searchButton:hover {
  background: #1a5fd0;
}

.tableResponsive {
  overflow-x: auto;
}

.actionButton {
  padding: 0.45rem 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  margin: 0 0.35rem 0.5rem 0;
  transition: background 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.actionButton.loading {
  background: #b3c7e6 !important;
  color: #fff;
  cursor: not-allowed;
}

.actionButton.loading::after {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

.actionButton.manage {
  background-color: #2d7ff9;
  color: #fff;
}
.actionButton.manage:hover {
  background-color: #1a5fd0;
}

.actionButton.accept {
  background-color: #28a745;
  color: #fff;
}
.actionButton-button.accept:hover {
  background-color: #218838;
}

.actionButton.decline {
  background-color: #dc3545;
  color: #fff;
}
.actionButton.decline:hover {
  background-color: #c82333;
}
