.add-user-container {
  width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #FFFFFF;
  min-height: 100vh;
}
.add-user-container .para-color {
  width: 170px;
}

.breadcrumb-wrapper {
  margin-bottom: 33px;
  display: flex;
  align-items: center;
  font-size: 20px;
}
.breadcrumb-wrapper .breadcrumb-link {
  color: #00BA8D;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-wrapper .breadcrumb-link:hover {
  color: #00BA8D;
  text-decoration: underline;
}
.breadcrumb-wrapper .breadcrumb-separator {
  margin: 0 8px;
  color: #000;
  font-weight: 500;
}
.breadcrumb-wrapper .breadcrumb-current {
  color: #000000B2;
  font-weight: 500;
}

.form-container {
  background: #FFFFFF;
}

.add-user-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.add-user-form .field-label {
  text-align: right;
  color: #4f5453;
}
.add-user-form .ant-form-item-control .ant-input {
  font-size: 16px;
  font-weight: 500;
  color: #4f5453;
}
.add-user-form .form-section {
  gap: 16px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-heading {
  font-size: 24px;
  font-weight: 600;
  color: #4f5453;
  margin: 0;
  padding-bottom: 8px;
}

.form-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.form-row.role-row {
  align-items: flex-start;
}

.field-label {
  min-width: 140px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0;
  padding-top: 12px;
  text-align: left;
}

.form-input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #b9bbba;
  border-radius: 6px;
  font-size: 14px;
  color: #000;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
}

.role-selection {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex: 1;
}

.role-option {
  position: relative;
}
.role-option:disabled label, .role-option.disabled label {
  background-color: #f7f7f7;
  pointer-events: none;
}
.role-option label {
  padding: 13px 20px;
  line-height: normal;
  cursor: pointer;
}
.role-option input:checked + label {
  border-color: #00BA8D !important;
  color: #00BA8D;
}
.role-option input:checked + label svg rect {
  fill: #00BA8D;
  stroke: #00BA8D;
}
.role-option input:checked + label svg path {
  fill: #FFFFFF;
}

.role-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.role-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #DBDBDB;
  border-radius: 6px;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  color: #4f5453;
  min-width: 160px;
}
.role-button:hover {
  opacity: 0.8;
}
.role-button.selected {
  border-color: #00BA8D;
  color: #00BA8D;
}
.role-button.selected .role-checkmark {
  background-color: #00BA8D;
  border-color: #FFFFFF;
  color: #00BA8D;
}
.role-button.selected .role-checkmark svg path {
  stroke: #fff;
}

.role-checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #959898;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: #FFFFFF;
  color: #4f5453;
}
.role-checkmark svg {
  width: 12px;
  height: 12px;
}
.role-checkmark svg path {
  stroke: #959898;
}

.action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #DBDBDB;
}

.btn-cancel {
  padding: 12px 24px;
  border: 1px solid #959898;
  border-radius: 6px;
  background-color: #D8D6E6;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-cancel:hover {
  background-color: #959898;
  border-color: #959898;
  color: #000;
}

.btn-primary {
  padding: 12px 24px;
  border: 1px solid #00BA8D;
  border-radius: 6px;
  background-color: #00BA8D;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background-color: #00BA8D;
  border-color: #00BA8D;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.error-message {
  color: #FF2828;
  font-size: 12px;
  margin-top: 4px;
  margin-left: 160px;
}

@media only screen and (max-width: 767.6px) {
  .add-user-container {
    padding: 20px 16px;
  }

  .form-row {
    flex-direction: column;
    gap: 8px;
  }

  .field-label {
    min-width: auto;
    padding-top: 0;
  }

  .role-selection {
    flex-direction: column;
    gap: 12px;
  }

  .role-button {
    min-width: auto;
    width: 100%;
  }

  .action-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-cancel,
.btn-primary {
    width: 100%;
  }

  .error-message {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .add-user-container {
    padding: 30px 20px;
  }

  .role-selection {
    gap: 12px;
  }

  .role-button {
    min-width: 140px;
  }
}
@media (max-width: 480px) {
  .breadcrumb-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .breadcrumb-separator {
    display: none;
  }
}
.modal .modal-heading {
  font-size: 24px;
  font-weight: 600;
  color: #4f5453;
  margin-bottom: 16px;
}
.modal.show {
  display: block !important;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-dialog.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}

.modal-content {
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-header {
  border-bottom: 1px solid #DBDBDB;
  padding: 1rem 1.5rem;
}
.modal-header .modal-title {
  font-size: 18px;
  font-weight: 500;
  color: #4f5453;
  margin: 0;
}
.modal-header .btn-close {
  background: none;
  border: none;
  padding: 0;
  width: 16px;
  height: 16px;
  background-size: cover;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  background-image: url("../images/circle-icon.svg");
  padding: 0 !important;
  opacity: 1 !important;
  margin-right: 5px !important;
}
.modal-header .btn-close:focus {
  box-shadow: none;
}
.modal-header .btn-close:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

div.modal-body {
  padding: 28px;
}
div.modal-body h2 {
  color: #000;
  margin-bottom: 0.625rem;
}
div.modal-body p {
  line-height: normal;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.88);
}
div.modal-body .bg-gray-50 {
  background-color: #f9fafb;
  border-radius: 6px;
  padding: 0.75rem;
  margin-top: 1rem;
}
div.modal-body .bg-gray-50 p {
  margin-bottom: 0.25rem;
}
div.modal-body .bg-gray-50 p:last-child {
  margin-bottom: 0;
}
div.modal-body .bg-gray-50 p strong {
  color: #000;
  font-weight: 600;
}

.modal-footer {
  border-top: 1px solid #DBDBDB;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.modal-footer .spinner-border {
  width: 0.875rem;
  height: 0.875rem;
  border-width: 0.125rem;
}

@media only screen and (max-width: 767.6px) {
  .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }

  .modal-header,
.modal-body,
.modal-footer {
    padding: 1rem;
  }

  .modal-footer {
    flex-direction: column;
  }
  .modal-footer .btn {
    width: 100%;
  }
}
.user-management-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
}

.user-count .count-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
}

.action-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-container {
  display: flex;
  align-items: center;
  position: relative;
}

.search-input {
  padding: 0.5rem 0.75rem;
  border: 1px solid #959898;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #000;
  background: #FFFFFF;
  width: 200px;
  transition: border-color 0.2s ease;
}
.search-input::placeholder {
  color: #000;
}
.search-input:focus {
  outline: none;
  border-color: #00BA8D;
  box-shadow: 0 0 0 2px rgba(0, 186, 141, 0.1);
}

.search-button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  transition: color 0.2s ease;
}
.search-button:hover {
  color: #000;
}

.filter-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #00BA8D;
  border-radius: 6px;
  background: #FFFFFF;
  color: #00BA8D;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-button:hover {
  background-color: #00BA8D;
  color: #FFFFFF;
}
.filter-button .chevron {
  transition: transform 0.2s ease;
}
.filter-button .chevron.rotated {
  transform: rotate(180deg);
}

.add-users-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #00BA8D;
  border-radius: 6px;
  background-color: #00BA8D;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.add-users-button:hover {
  background-color: #00BA8D;
  border-color: #00BA8D;
}

.expanded-filters {
  background-color: #f9fafb;
  border: 1px solid #DBDBDB;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  animation: slideDown 0.3s ease-out;
}

.filters-content {
  padding: 1rem;
  display: flex;
  gap: 2rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.filter-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #959898;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #000;
  background: #FFFFFF;
  min-width: 150px;
  transition: border-color 0.2s ease;
}
.filter-select:focus {
  outline: none;
  border-color: #00BA8D;
  box-shadow: 0 0 0 2px rgba(0, 186, 141, 0.1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 767.6px) {
  .user-management-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .action-bar {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .search-input {
    width: 150px;
  }

  .filters-content {
    flex-direction: column;
    gap: 1rem;
  }

  .filter-select {
    min-width: auto;
    width: 100%;
  }
}
.action-menu-item {
  transition: all 0.2s ease;
}
.action-menu-item .action-icon {
  filter: brightness(0) saturate(100%) invert(32%) sepia(8%) saturate(1038%) hue-rotate(169deg) brightness(93%) contrast(88%);
  transition: filter 0.2s ease;
  height: 12px;
  width: 12px;
}
.action-menu-item .action-text {
  color: #4f5453;
  transition: color 0.2s ease;
  line-height: normal;
}
.action-menu-item:hover .action-icon {
  filter: brightness(0) saturate(100%) invert(54%) sepia(93%) saturate(1558%) hue-rotate(131deg) brightness(99%) contrast(101%);
}
.action-menu-item:hover .action-text {
  color: #00BA8D;
}

.ant-notification-notice-icon-success {
  background-image: url("../images/check-icon.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  color: #00BA8D;
  font-size: 16px;
  font-weight: 500;
  margin-top: 4px;
}
.ant-notification-notice-icon-success svg {
  display: none;
}

.disabled-password-field {
  color: rgba(0, 0, 0, 0.25);
  background-color: #F5F5F5 !important;
  border-color: #b9bbba !important;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.disabled-password-field:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #F5F5F5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.disabled-password-field input[type=password] {
  cursor: not-allowed !important;
}

/*# sourceMappingURL=custom.css.map */
