#plugin-client-modal {
    position: fixed;
    background: #c8c8c859;
    top: 0;
    border: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
#plugin-client-modal-loader {
    position: absolute;
}
ul.b2b_favorites {
    list-style: none;
    padding: 0;
}
li.b2b_favorite {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
}

.table-container {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

thead {
  background-color: #f8f9fa;
  text-align: left;
}

thead th {
  padding: 12px 16px;
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

tbody tr {
  border-bottom: 1px solid #eee;
}

tbody td {
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
}

tbody tr:hover {
  background-color: #f5f6f8;
}

.status {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-align: center;
}

.status.active {
  background-color: #e6f7ec;
  color: #28a745;
}

.status.pending {
  background-color: #fff3cd;
  color: #ffc107;
}

.actions button {
  border: none;
  outline: none;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 5px;
  transition: background-color 0.3s;
}

.actions .approve {
  background-color: #28a745;
  color: white;
}

.actions .approve:hover {
  background-color: #218838;
}

.actions .reject {
  background-color: #dc3545;
  color: white;
}

.actions .reject:hover {
  background-color: #c82333;
}