.list-user-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px auto;
  width: 98%;
  height: 90%;
  padding: auto;
}

.list-user-list{
  display: flex;
  width: 60%;
}

.list-user-options{
  display: flex;
  width: 39%;
}

.list-user-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  width: 100%;
}

.list-user-card-header {
  background-color: white;
  border-bottom: none;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.list-user-filter-list button {
  border: none;
  background: none;
  color: #007b8a;
  font-weight: bold;
  font-size: 14px;
}

.list-user-add-btn {
  background-color: #00a1e0;
  color: white;
  border: none;
  padding: 4px 10px;
  border-radius: 50%;
  font-size: 18px;
  margin-left: 5px;
  line-height: 1;
}

.list-user-add-btn-refresh {
  margin-bottom: 10px;
}

.list-user-table {
  background-color: white;
  width: 100%;
  border-collapse: collapse;
}

.list-user-card .card-body .table th, td {
  border: 1px solid #dee2e6;
  padding: 8px 12px;
  text-align: left;
  vertical-align: middle;
}

.list-user-card .card-body .table th {
  color: #007b8a;
  font-weight: 600;
}

.list-user-card .card-body .table tr:hover{
  background-color: #f5f5f5;
  transition: all 0.2s ease-in-out;
}

.action-icons i {
  margin-right: 10px;
  color: #007b8a;
  cursor: pointer;
}

.record-count {
  text-align: right;
  margin-top: 10px;
  font-weight: 500;
  padding-right: 10px;
}

.list-user-card .card-body .table thead th span.sort-icon {
  margin-left: 5px;
  color: #007b8a;
  font-size: 12px;
}

.list-user-card .card-body {
  overflow-y: auto;
}

.list-user-card button{
  border: none;
  background: none;
}

.list-user-card button:hover{
  color: #007b8a;
}