/* User Picker Modal Styles */
.modal-content-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 70vh;
}

.search-section {
  flex-shrink: 0;
  background: white;
  z-index: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.selected-users-chips {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.user-chip {
  display: inline-block;
  margin: 5px;
  padding: 10px 25px;
  background-color: #f5f5f5;
  border-radius: 8px;
  border: 1px solid #ddd;
  position: relative;
  max-width: 300px;
  min-height: 80px;
  height: 100%;
}
.user-chip-content {
  font-size: 12px;
  line-height: 1.4;
}
.user-chip-company {
  font-weight: bold;
  font-size: 14px;
  color: #333;
  margin-bottom: 2px;
}
.user-chip-contact {
  color: #666;
  margin-bottom: 2px;
}
.user-chip-address {
  color: #777;
  margin-bottom: 1px;
}
.user-chip-city {
  color: #777;
  margin-bottom: 1px;
}
.user-chip-customer {
  color: #777;
  margin-bottom: 1px;
}
.user-chip-close {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  color: #999;
  font-size: 18px;
  transition: color 0.2s;
}
.user-chip-close:hover {
  color: #f44336;
}

.users-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 5px;
}
.users-list::-webkit-scrollbar {
  width: 6px;
}
.users-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.users-list::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.users-list::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.user-item {
  margin: 8px 0;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.user-item:hover {
  background-color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.user-item.selected {
  border-color: #4CAF50;
  background-color: #e8f5e8;
}
.user-item-header {
  display: flex;
  align-items: flex-start;
}
.user-item-selection {
  margin-right: 12px;
  margin-top: 2px;
}
.user-item-info {
  flex: 1;
}
.user-item-company {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}
.user-item-contact {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}
.user-item-address {
  font-size: 13px;
  color: #777;
  margin-bottom: 4px;
}
.user-item-customer {
  font-size: 12px;
  color: #555;
  margin-bottom: 4px;
}
.user-item-contact-info {
  font-size: 12px;
  color: #888;
}

.modal.modal-fixed-header .modal-content {
  padding-top: 0;
}

.modal-header {
  padding: 24px;
  display: flex;
  align-items: center;
}
.modal-header i.material-icons {
  margin-right: 12px;
}

@media only screen and (max-width: 600px) {
  .user-chip {
    max-width: 100%;
    margin: 3px 0;
  }
  .user-item {
    padding: 8px;
  }
  .user-item-header {
    flex-direction: column;
  }
  .user-item-selection {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.center-align h4 {
  color: #666;
  font-weight: 300;
}

.progress {
  margin: 20px 0;
}

.modal-footer .btn {
  margin-right: 8px;
}
.modal-footer .btn.right {
  margin-right: 0;
  margin-left: 8px;
}

body.dark-mode .search-section {
  background: #292929;
  border-bottom: 1px solid #444;
}
body.dark-mode .user-chip {
  background-color: #3a3a3a;
  border: 1px solid #555;
}
body.dark-mode .user-chip-company {
  color: #dcdcdc;
}
body.dark-mode .user-chip-contact {
  color: #b0b0b0;
}
body.dark-mode .user-chip-address, body.dark-mode .user-chip-city, body.dark-mode .user-chip-customer {
  color: #999;
}
body.dark-mode .user-chip-close {
  color: #666;
}
body.dark-mode .user-chip-close:hover {
  color: #f44336;
}
body.dark-mode .users-list::-webkit-scrollbar-track {
  background: #424242;
}
body.dark-mode .users-list::-webkit-scrollbar-thumb {
  background: #666;
}
body.dark-mode .users-list::-webkit-scrollbar-thumb:hover {
  background: #777;
}
body.dark-mode .user-item {
  background-color: #333333;
  border-color: #555555;
}
body.dark-mode .user-item:hover {
  background-color: #424242;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
body.dark-mode .user-item.selected {
  border-color: #4CAF50;
  background-color: #1b4d1b;
}
body.dark-mode .user-item-company {
  color: #dcdcdc;
}
body.dark-mode .user-item-contact {
  color: #b0b0b0;
}
body.dark-mode .user-item-address {
  color: #999;
}
body.dark-mode .user-item-customer {
  color: #888;
}
body.dark-mode .user-item-contact-info {
  color: #777;
}
body.dark-mode .center-align h4 {
  color: #b0b0b0;
}/*# sourceMappingURL=PickUserModalElement.css.map */