.rs-agents-wrapper {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #191919;
  background: #fff;
}

/* .rs-agents-header {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
  padding-bottom: 12px;
} */

.rs-agents-filters {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: nowrap;
}

.rs-agents-select {
  min-width: 160px;
  width: 160px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
  color: #191919;
  flex-shrink: 0;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* custom arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23191919' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

.rs-agents-select:focus {
  outline: none;
  border-color: #337ab7;
  box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.15);

  /* focus arrow color */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23337ab7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.rs-agents-select::-ms-expand {
  display: none;
}

.rs-agents-teams {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.rs-agents-teams li {
  padding: 8px 14px;
  border: 1px solid #337ab7;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #337ab7;
  background: #fff;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.rs-agents-teams li:hover {
  background: #337ab7;
  color: #fff;
}

.rs-agents-teams li.active {
  background: #bd252a;
  border-color: #bd252a;
  color: #fff;
}

.rs-table-container {
  overflow-x: auto;
}

.rs-agents-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.rs-agents-table thead th {
  background: #191919;
  color: #fff;
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  white-space: nowrap;
}

.rs-agents-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e5e5;
  white-space: nowrap;
}

.rs-agents-table tbody tr:hover {
  background: rgba(51, 122, 183, 0.06);
}

.rs-table-container p {
  padding: 20px;
  background: #f9f9f9;
  border: 1px dashed #ccc;
  color: #191919;
  font-size: 14px;
}

#agent-name-input {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
  color: #191919;
  width: 100%;
}

.rs-mamber-agents-search {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

@media (max-width: 768px) {
  .rs-agents-filters {
    overflow-x: auto;
  }
}
