@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.mw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 0.5rem 1rem;
  border: 1px solid #00B2E3;
  border-radius: 0.375rem;
  background-color: #00B2E3;
  color: #FFFFFF;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.mw-button:hover {
  background-color: rgb(0, 158.0044052863, 201.5);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}
.mw-button:active {
  background-color: rgb(0, 138.0088105727, 176);
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.mw-button:disabled {
  background-color: #9CA3AF;
  border-color: #9CA3AF;
  color: #FFFFFF;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}
.mw-button:disabled:hover {
  background-color: #9CA3AF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transform: none;
}
.mw-button--secondary {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #7A8591;
}
.mw-button--secondary:hover {
  background-color: rgba(122, 133, 145, 0.05);
  border-color: #7A8591;
  color: #7A8591;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.mw-button--secondary:active {
  background-color: rgba(122, 133, 145, 0.1);
}
.mw-button--secondary:disabled {
  background-color: #FFFFFF;
  border-color: #E5E7EB;
  color: #9CA3AF;
}
.mw-button--outline {
  background-color: transparent;
  border: 1px solid #00B2E3;
  color: #00B2E3;
}
.mw-button--outline:hover {
  background-color: rgba(0, 178, 227, 0.05);
  border-color: #00B2E3;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.mw-button--outline:active {
  background-color: rgba(0, 178, 227, 0.1);
}
.mw-button--outline:disabled {
  background-color: transparent;
  border-color: #9CA3AF;
  color: #9CA3AF;
}
.mw-button--danger {
  background-color: #F16E42;
  border: 1px solid #F16E42;
  color: #FFFFFF;
}
.mw-button--danger:hover {
  background-color: rgb(239.2413793103, 91.7857142857, 42.2586206897);
  border-color: rgb(239.2413793103, 91.7857142857, 42.2586206897);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.mw-button--danger:active {
  background-color: rgb(237.4827586207, 73.5714285714, 18.5172413793);
}
.mw-button--danger:disabled {
  background-color: #9CA3AF;
  border-color: #9CA3AF;
  color: #FFFFFF;
}
.mw-button--sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.8125rem;
  min-width: 60px;
}
.mw-button--lg {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  min-width: 120px;
}
.mw-button--xl {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  min-width: 140px;
}
.mw-button--full {
  width: 100%;
  justify-content: center;
}
.mw-button__text {
  margin: 0 0.25rem;
}
i + .mw-button__text, .mw-button__text + i {
  margin-left: 0.25rem;
}

.mw-filter-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: calc(100vh - 3.5rem); /* Full viewport minus top-row height */
  position: relative;
  background-color: #FAFBFC;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}
.mw-filter-page--header-hidden {
  min-height: 100vh; /* Full viewport when header is hidden */
}
.mw-filter-page--header-hidden .mw-filter-page__body {
  height: 100vh; /* Full viewport height when header is hidden */
  padding: 0.2rem;
}
.mw-filter-page__header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FAFBFC;
  border-bottom: 1px solid #E5E7EB;
  padding: 0.5rem 1.25rem;
}
.mw-filter-page__header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  gap: 1.25rem;
}
.mw-filter-page__header-custom-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.5rem;
}
.mw-filter-page__header-custom-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.5rem;
}
.mw-filter-page__title-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mw-filter-page__icon {
  font-size: 1.125rem;
  color: #00B2E3;
}
.mw-filter-page__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #00B2E3;
}
.mw-filter-page__header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.mw-filter-page__filter-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0.5rem;
  background-color: rgba(0, 178, 227, 0.05);
  border: 1px solid rgba(0, 178, 227, 0.15);
  border-radius: 0.5rem;
}
.mw-filter-page__filter-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mw-filter-page__filter-pills::-webkit-scrollbar {
  display: none;
}
.mw-filter-page__filter-pill {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(0, 178, 227, 0.1);
  border: 1px solid rgba(0, 178, 227, 0.3);
  border-radius: 0.375rem;
  font-size: 0.75rem;
  color: #00B2E3;
  max-width: 200px;
}
.mw-filter-page__filter-pill .fas, .mw-filter-page__filter-pill .fa {
  font-size: 0.75rem;
}
.mw-filter-page__filter-name {
  font-weight: 500;
  white-space: nowrap;
}
.mw-filter-page__filter-value {
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}
.mw-filter-page__filter-remove {
  background: none;
  border: none;
  color: rgba(0, 178, 227, 0.7);
  cursor: pointer;
  padding: 2px;
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
  margin-left: 0.25rem;
}
.mw-filter-page__filter-remove:hover {
  background-color: rgba(0, 178, 227, 0.2);
  color: #00B2E3;
}
.mw-filter-page__filter-remove .fas, .mw-filter-page__filter-remove .fa {
  font-size: 10px;
}
.mw-filter-page__toggle-btn.mw-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
  color: #7A8591;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.mw-filter-page__toggle-btn.mw-button:hover {
  background-color: rgba(0, 178, 227, 0.05);
  border-color: #00B2E3;
  color: #00B2E3;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transform: none;
}
.mw-filter-page__toggle-btn--active.mw-button {
  background-color: #00B2E3;
  border-color: #00B2E3;
  color: #FFFFFF;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.mw-filter-page__body {
  display: flex;
  flex: 1;
  position: relative;
  overflow: hidden;
  gap: 1.25rem;
  padding: 0.25rem;
}
.mw-filter-page__content {
  flex: 1;
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.25rem;
  border: 1px solid #E5E7EB;
  transition: margin-right 0.3s ease-in-out;
}
.mw-filter-page__content--sidebar-open {
  margin-right: 0;
}
.mw-filter-page__content h1, .mw-filter-page__content h2, .mw-filter-page__content h3 {
  color: #00B2E3;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.mw-filter-page__content h1 {
  font-size: 1.125rem;
}
.mw-filter-page__content h2 {
  font-size: 1rem;
}
.mw-filter-page__content h3 {
  font-size: 0.875rem;
}
.mw-filter-page__content p, .mw-filter-page__content .description {
  color: #7A8591;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.mw-filter-page__content::-webkit-scrollbar {
  width: 6px;
}
.mw-filter-page__content::-webkit-scrollbar-track {
  background: transparent;
}
.mw-filter-page__content::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.3);
  border-radius: 50px;
}
.mw-filter-page__content::-webkit-scrollbar-thumb:hover {
  background: rgba(156, 163, 175, 0.5);
}
.mw-filter-page__sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background-color: #FFFFFF;
  border-left: 1px solid #E5E7EB;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 99;
  display: flex;
  flex-direction: column;
}
.mw-filter-page__sidebar--open {
  transform: translateX(0);
}
.mw-filter-page__sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  border-bottom: 1px solid #E5E7EB;
  background-color: #FFFFFF;
}
.mw-filter-page__sidebar-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #00B2E3;
}
.mw-filter-page__close-btn.mw-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: transparent;
  border: 1px solid #E5E7EB;
  border-radius: 0.375rem;
  color: #7A8591;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  padding: 0;
}
.mw-filter-page__close-btn.mw-button:hover {
  background-color: rgba(0, 178, 227, 0.05);
  border-color: #00B2E3;
  color: #00B2E3;
  transform: none;
}
.mw-filter-page__close-btn.mw-button:active {
  background-color: rgba(0, 178, 227, 0.1);
  border-color: #00B2E3;
  color: #00B2E3;
}
.mw-filter-page__close-btn.mw-button i {
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1;
}
.mw-filter-page__sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
}
.mw-filter-page__sidebar-content .form-group {
  margin-bottom: 1rem;
}
.mw-filter-page__sidebar-content label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #5B6770;
  margin-bottom: 0.5rem;
}
.mw-filter-page__sidebar-content input, .mw-filter-page__sidebar-content select, .mw-filter-page__sidebar-content textarea {
  width: 100%;
  padding: 0.5rem 0.5rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.375rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  background-color: #FFFFFF;
  color: #5B6770;
  transition: all 0.15s ease-in-out;
}
.mw-filter-page__sidebar-content input::placeholder, .mw-filter-page__sidebar-content select::placeholder, .mw-filter-page__sidebar-content textarea::placeholder {
  color: #9CA3AF;
  font-style: italic;
}
.mw-filter-page__sidebar-content input:focus, .mw-filter-page__sidebar-content select:focus, .mw-filter-page__sidebar-content textarea:focus {
  outline: none;
  border-color: #00B2E3;
  box-shadow: 0 0 0 2px rgba(0, 178, 227, 0.1);
}
.mw-filter-page__sidebar-content::-webkit-scrollbar {
  width: 4px;
}
.mw-filter-page__sidebar-content::-webkit-scrollbar-track {
  background: transparent;
}
.mw-filter-page__sidebar-content::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.3);
  border-radius: 50px;
}
.mw-filter-page__sidebar-content::-webkit-scrollbar-thumb:hover {
  background: rgba(156, 163, 175, 0.5);
}
.mw-filter-page__sidebar-footer {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  border-top: 1px solid #E5E7EB;
  background-color: #FAFBFC;
  justify-content: flex-end;
}
.mw-filter-page__sidebar-footer .mw-button--primary,
.mw-filter-page__sidebar-footer .btn-primary {
  flex: 1;
  background-color: #00B2E3;
  border: 1px solid #00B2E3;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.mw-filter-page__sidebar-footer .mw-button--primary:hover,
.mw-filter-page__sidebar-footer .btn-primary:hover {
  background-color: rgb(0, 158.0044052863, 201.5);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transform: none;
}
.mw-filter-page__sidebar-footer .mw-button--secondary,
.mw-filter-page__sidebar-footer .btn-secondary {
  flex: 1;
  background-color: transparent;
  border: 1px solid #E5E7EB;
  color: #7A8591;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.mw-filter-page__sidebar-footer .mw-button--secondary:hover,
.mw-filter-page__sidebar-footer .btn-secondary:hover {
  background-color: rgba(122, 133, 145, 0.05);
  border-color: #7A8591;
  transform: none;
}
.mw-filter-page__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 98;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  backdrop-filter: blur(2px);
}
@media (max-width: 768px) {
  .mw-filter-page {
    min-height: calc(100vh - 3.5rem); /* Maintain viewport calculation */
  }
  .mw-filter-page__header {
    padding: 0.5rem 1rem;
  }
  .mw-filter-page__header-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .mw-filter-page__header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .mw-filter-page__filter-section {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .mw-filter-page__filter-pills {
    justify-content: flex-start;
  }
  .mw-filter-page__filter-summary {
    text-align: center;
    white-space: normal;
  }
  .mw-filter-page__filter-pill {
    max-width: none;
    flex: 1;
    min-width: 0;
  }
  .mw-filter-page__filter-value {
    max-width: none;
    flex: 1;
  }
  .mw-filter-page__toggle-btn {
    justify-content: center;
  }
  .mw-filter-page__body {
    padding: 1rem;
    gap: 1rem;
  }
  .mw-filter-page__title {
    font-size: 1rem;
  }
  .mw-filter-page__sidebar {
    width: 100%;
    right: 0;
  }
  .mw-filter-page__content {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .mw-filter-page {
    min-height: calc(100vh - 3.5rem); /* Maintain viewport calculation */
  }
  .mw-filter-page__header {
    padding: 0.5rem 0.5rem;
  }
  .mw-filter-page__header-content {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }
  .mw-filter-page__header-actions {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .mw-filter-page__filter-section {
    height: auto;
    flex: 1;
    min-height: 32px;
  }
  .mw-filter-page__filter-pills {
    flex-wrap: nowrap;
    gap: 0.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mw-filter-page__filter-pill {
    flex-shrink: 0;
    font-size: 11px;
    padding: 4px 8px;
    max-width: 150px;
  }
  .mw-filter-page__filter-value {
    max-width: 60px;
  }
  .mw-filter-page__body {
    padding: 0.5rem;
    gap: 0.5rem;
  }
  .mw-filter-page__title-section {
    gap: 0.5rem;
    justify-content: center;
  }
  .mw-filter-page__toggle-btn {
    padding: 0.5rem;
    font-size: 0.8125rem;
    flex-shrink: 0;
  }
  .mw-filter-page__toggle-btn span {
    display: none;
  }
  .mw-filter-page__content {
    padding: 0.5rem;
  }
  .mw-filter-page__sidebar-content {
    padding: 0.5rem;
  }
}

.mw-layout {
  display: flex;
  height: 100vh;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background-color: #FAFBFC;
  overflow: visible !important;
}
.mw-layout__sidebar {
  width: 280px;
  background-color: transparent;
  border-right: none;
  padding: 0;
  box-shadow: none;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
  overflow: visible !important;
}
.mw-layout__main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mw-layout__header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.mw-layout__header-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  min-height: 56px;
}
.mw-layout__sidebar-toggle {
  flex-shrink: 0;
}
.mw-layout__sidebar-toggle.mw-button {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E7EB;
  background-color: #FFFFFF;
  color: #00B2E3;
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
}
.mw-layout__sidebar-toggle.mw-button:hover {
  background-color: #f7f7f7;
  border-color: #c1c7cd;
}
.mw-layout__sidebar-toggle.mw-button:active, .mw-layout__sidebar-toggle.mw-button:focus {
  box-shadow: 0 0 0 2px rgba(0, 178, 227, 0.1);
  outline: none;
}
.mw-layout__sidebar-toggle.mw-button i {
  font-size: 0.875rem;
  font-weight: 500;
}
.mw-layout__header-main {
  flex: 1;
  min-width: 0;
}
.mw-layout__content {
  flex-grow: 1;
  padding: 1rem;
  background-color: #FAFBFC;
  min-height: 0;
}
.mw-layout__content--scrollable {
  overflow-y: auto;
}
.mw-layout__content--scrollable::-webkit-scrollbar {
  width: 4px;
}
.mw-layout__content--scrollable::-webkit-scrollbar-track {
  background: transparent;
}
.mw-layout__content--scrollable::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.3);
  border-radius: 50px;
}
.mw-layout__content--scrollable::-webkit-scrollbar-thumb:hover {
  background: rgba(156, 163, 175, 0.5);
}
.mw-layout--sidebar-hidden .mw-layout__sidebar {
  width: 0;
  padding: 0;
  border-right: none;
  overflow: hidden;
}
.mw-layout--nav-minimized .mw-layout__sidebar {
  width: 64px;
  overflow: visible !important;
}
@media (max-width: 768px) {
  .mw-layout__header-content {
    padding: 0.5rem 0.5rem;
  }
  .mw-layout__content {
    padding: 0.5rem;
  }
  .mw-layout__sidebar {
    width: 280px;
  }
}
@media (max-width: 480px) {
  .mw-layout__sidebar {
    width: 100%;
  }
  .mw-layout__header-content {
    gap: 0.5rem;
  }
  .mw-layout__content {
    padding: 0.5rem;
  }
}

.mw-layout__content .mw-filter-page {
  height: 100% !important;
  min-height: auto !important;
  margin: 0 !important;
}

.mw-layout__content:has(.mw-filter-page),
.filter-page .mw-layout__content {
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.mw-layout__content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.5rem;
  margin-left: 0;
  background-color: #FAFBFC;
}

.mw-nav-menu {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 280px;
  background: linear-gradient(135deg, #434B54 0%, #5B6770 100%);
  color: #ecf0f1;
  transition: width 0.3s ease, transform 0.3s ease;
  position: relative;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow: visible !important;
}
.mw-nav-menu--minimized {
  width: 64px;
  overflow: visible !important;
}
.mw-nav-menu:after {
  display: none;
}
.mw-nav-menu--minimized {
  width: 64px;
}
.mw-nav-menu--minimized .mw-nav-menu__text,
.mw-nav-menu--minimized .mw-nav-menu__subtext {
  opacity: 0;
  visibility: hidden;
}
.mw-nav-menu__submenu .mw-nav-menu--minimized .mw-nav-menu__text,
.mw-nav-menu__submenu .mw-nav-menu--minimized .mw-nav-menu__subtext {
  opacity: 1 !important;
  visibility: visible !important;
}
.mw-nav-menu--minimized .mw-nav-menu__arrow {
  opacity: 0;
  visibility: hidden;
}
.mw-nav-menu--minimized .mw-nav-menu__item--has-children {
  position: relative !important;
}
.mw-nav-menu--minimized .mw-nav-menu__item--has-children:hover .mw-nav-menu__submenu,
.mw-nav-menu--minimized .mw-nav-menu__item--has-children .mw-nav-menu__submenu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}
.mw-nav-menu--minimized .mw-nav-menu__submenu {
  position: absolute !important;
  left: 100% !important;
  top: 0 !important;
  min-width: 200px !important;
  max-width: 400px !important;
  width: auto !important;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(32, 32, 32, 0.95) 100%) !important;
  border-radius: 8px !important;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3) !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  pointer-events: none !important;
  max-height: none !important;
  overflow: visible !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transform: translateX(-10px) !important;
  display: block !important;
}

.mw-nav-menu__header {
  padding: 0 1rem;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
  background: #ffffff;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mw-nav-menu--minimized .mw-nav-menu__header {
  padding: 0 0.5rem;
  height: 56px;
}

.mw-nav-menu__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.mw-nav-menu__logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.mw-nav-menu--minimized .mw-nav-menu__logo {
  justify-content: center;
}
.mw-nav-menu--minimized .mw-nav-menu__logo img {
  width: 32px;
  height: 32px;
}

.mw-nav-menu__logo-minimized {
  display: flex;
  justify-content: center;
}
.mw-nav-menu__logo-minimized img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.mw-nav-menu__product-name {
  font-family: "Gotham", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #5B6770;
  margin: 0;
  line-height: 1.2;
}
.mw-nav-menu--minimized .mw-nav-menu__product-name {
  display: none;
}

.mw-nav-menu__product-subtitle {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  color: #7A8591;
  margin: 0.25rem 0 0 0;
}
.mw-nav-menu--minimized .mw-nav-menu__product-subtitle {
  display: none;
}

.mw-nav-menu__content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden !important;
  padding: 1rem 0;
  background: transparent !important;
}
.mw-nav-menu--minimized .mw-nav-menu__content {
  overflow-x: hidden !important;
  overflow-y: auto;
}
.mw-nav-menu__item--has-children:hover .mw-nav-menu--minimized .mw-nav-menu__content {
  overflow: visible !important;
}
.mw-nav-menu__item--has-children:hover .mw-nav-menu__content {
  overflow: visible !important;
}
.mw-nav-menu__content::-webkit-scrollbar {
  width: 6px;
}
.mw-nav-menu__content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.mw-nav-menu__content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
}
.mw-nav-menu__content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mw-nav-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent !important;
}

.mw-nav-menu__item {
  position: relative;
  background: transparent !important;
}
.mw-nav-menu__item--has-children {
  position: relative;
  background: transparent !important;
}
.mw-nav-menu__item--has-children .mw-nav-menu__link,
.mw-nav-menu__item--has-children .mw-nav-menu__button {
  position: relative;
  background: transparent !important;
}
.mw-nav-menu__item--has-children:hover > .mw-nav-menu__link:not(.mw-nav-menu__link--active), .mw-nav-menu__item--has-children:hover > .mw-nav-menu__button {
  background: linear-gradient(90deg, rgba(0, 178, 227, 0.2) 0%, rgba(0, 178, 227, 0.1) 100%) !important;
}

.mw-nav-menu__link,
.mw-nav-menu__button {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100%;
  padding: 0.875rem 1.5rem;
  color: #bdc3c7;
  text-decoration: none;
  background: transparent !important;
  border: none;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  text-align: left !important;
}
.mw-nav-menu__link:hover,
.mw-nav-menu__button:hover {
  color: #fff !important;
  background: linear-gradient(90deg, rgba(0, 178, 227, 0.2) 0%, rgba(0, 178, 227, 0.1) 100%) !important;
  transform: translateX(4px);
}
.mw-nav-menu__link:hover .mw-nav-menu__icon,
.mw-nav-menu__button:hover .mw-nav-menu__icon {
  transform: scale(1.1);
  color: #00B2E3;
}
.mw-nav-menu__link:focus,
.mw-nav-menu__button:focus {
  outline: 2px solid #00B2E3;
  outline-offset: -2px;
}
.mw-nav-menu--minimized .mw-nav-menu__link,
.mw-nav-menu--minimized .mw-nav-menu__button {
  padding: 0.875rem 0.5rem;
  justify-content: center !important;
}
.mw-nav-menu--minimized .mw-nav-menu__link .mw-nav-menu__icon,
.mw-nav-menu--minimized .mw-nav-menu__button .mw-nav-menu__icon {
  margin-right: 0;
  justify-content: center;
}
.mw-nav-menu--minimized .mw-nav-menu__link:hover,
.mw-nav-menu--minimized .mw-nav-menu__button:hover {
  transform: none;
  background: rgba(0, 178, 227, 0.2) !important;
}

.mw-nav-menu__item--has-children .mw-nav-menu__link,
.mw-nav-menu__item--has-children .mw-nav-menu__button,
.mw-nav-menu__button {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  text-align: left !important;
}
.mw-nav-menu--minimized .mw-nav-menu__item--has-children .mw-nav-menu__link,
.mw-nav-menu--minimized .mw-nav-menu__item--has-children .mw-nav-menu__button,
.mw-nav-menu--minimized .mw-nav-menu__button {
  justify-content: center !important;
}

.mw-nav-menu:not(.mw-nav-menu--minimized) .mw-nav-menu__link,
.mw-nav-menu:not(.mw-nav-menu--minimized) .mw-nav-menu__button {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  text-align: left !important;
}
.mw-nav-menu:not(.mw-nav-menu--minimized) .mw-nav-menu__link .mw-nav-menu__icon,
.mw-nav-menu:not(.mw-nav-menu--minimized) .mw-nav-menu__button .mw-nav-menu__icon {
  justify-content: flex-start !important;
}
.mw-nav-menu:not(.mw-nav-menu--minimized) .mw-nav-menu__link .mw-nav-menu__text,
.mw-nav-menu:not(.mw-nav-menu--minimized) .mw-nav-menu__button .mw-nav-menu__text {
  text-align: left !important;
}

.mw-nav-menu__link--active {
  color: #fff !important;
  background: linear-gradient(90deg, #00B2E3 0%, #1565C0 100%) !important;
  box-shadow: 0 2px 8px rgba(0, 178, 227, 0.3);
}
.mw-nav-menu__link--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #00B2E3;
  border-radius: 0 2px 2px 0;
}
.mw-nav-menu__link--active .mw-nav-menu__icon {
  color: #fff;
  transform: scale(1.05);
}

.mw-nav-menu__icon {
  width: 20px;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  margin-right: 0.875rem;
}
.mw-nav-menu--minimized .mw-nav-menu__icon {
  margin-right: 0 !important;
  justify-content: center !important;
  font-size: 1.25rem;
  width: auto;
}

.mw-nav-menu__text {
  flex: 1;
  margin-left: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mw-nav-menu--minimized .mw-nav-menu__text {
  opacity: 0;
  visibility: hidden;
}

.mw-nav-menu__arrow {
  margin-left: auto;
  font-size: 0.8125rem;
  transition: all 0.3s ease;
}
.mw-nav-menu__arrow--expanded {
  transform: rotate(180deg);
}
.mw-nav-menu--minimized .mw-nav-menu__arrow {
  opacity: 0;
  visibility: hidden;
}

.mw-nav-menu__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.1) !important;
  border-left: 3px solid #00B2E3;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.mw-nav-menu__submenu--expanded {
  max-height: 500px;
  padding: 0.5rem 0;
}
.mw-nav-menu--minimized .mw-nav-menu__submenu {
  background: transparent;
  border-left: none;
  max-height: none;
  overflow: visible;
  padding: 0.5rem 0;
  position: absolute !important;
  left: 100% !important;
  top: 0 !important;
  min-width: 200px !important;
  max-width: 400px !important;
  width: auto !important;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(32, 32, 32, 0.95) 100%) !important;
  border-radius: 0 8px 8px 0 !important;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3) !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  pointer-events: none !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transform: translateX(-10px) !important;
}
.mw-nav-menu--minimized .mw-nav-menu__submenu--expanded {
  max-height: none;
  padding: 0.5rem 0;
}

.mw-nav-menu__sublink {
  display: flex;
  align-items: center;
  padding: 0.625rem 1rem 0.625rem 3rem;
  color: #95a5a6;
  text-decoration: none;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  transition: all 0.3s ease;
  word-wrap: break-word;
  line-height: 1.4;
}
.mw-nav-menu__sublink:hover {
  color: #ecf0f1;
  background: rgba(0, 178, 227, 0.15);
  padding-left: 3.25rem;
}
.mw-nav-menu__sublink:focus {
  outline: 2px solid #00B2E3;
  outline-offset: -2px;
}
.mw-nav-menu--minimized .mw-nav-menu__sublink {
  padding-left: 1rem;
}
.mw-nav-menu--minimized .mw-nav-menu__sublink:hover {
  padding-left: 1.25rem;
}

.mw-nav-menu__sublink--active {
  color: #00B2E3 !important;
  background: rgba(0, 178, 227, 0.2) !important;
  font-weight: 500;
}

.mw-nav-menu__subicon {
  width: 18px;
  font-size: 14px;
  margin-right: 0.75rem;
  color: #7f8c8d;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 18px;
  text-align: center;
}
.mw-nav-menu__sublink:hover .mw-nav-menu__subicon {
  color: #bdc3c7;
}
.mw-nav-menu__sublink--active .mw-nav-menu__subicon {
  color: #00B2E3;
}

.mw-nav-menu__subtext {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  flex: 1;
}

.mw-nav-menu__custom-content {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
.mw-nav-menu--minimized .mw-nav-menu__custom-content {
  display: none !important;
}

.mw-nav-menu__footer {
  padding: 1rem;
  /* Create elegant visual separator */
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  margin-top: auto;
  position: relative;
  /* Add subtle top highlight for depth */
}
.mw-nav-menu__footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}
.mw-nav-menu--minimized .mw-nav-menu__footer {
  padding: 0.5rem;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.mw-nav-menu__minimize-toggle {
  position: absolute !important;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-color: #00B2E3 !important;
  border: 3px solid #fff !important;
  border-radius: 50% !important;
  color: #fff;
  font-size: 0.8125rem;
  cursor: pointer !important;
  transition: all 0.3s ease;
  z-index: 10000 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  outline: none !important;
  box-sizing: border-box !important;
  text-align: center !important;
}
.mw-nav-menu__minimize-toggle::before, .mw-nav-menu__minimize-toggle::after {
  display: none !important;
}
.mw-nav-menu__minimize-toggle i {
  background-color: inherit !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
}
.mw-nav-menu__minimize-toggle:hover {
  background: #1565C0;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 178, 227, 0.6);
}
.mw-nav-menu__minimize-toggle:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.mw-nav-menu__minimize-toggle:active {
  transform: translateY(-50%) scale(0.95);
}

@media (max-width: 768px) {
  .mw-nav-menu {
    width: 100%;
  }
  .mw-nav-menu--minimized {
    width: 64px;
  }
  .mw-nav-menu__minimize-toggle {
    display: none;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.mw-nav-menu__item {
  animation: slideIn 0.3s ease;
}

.mw-nav-menu__item:hover {
  background: transparent !important;
}
.mw-nav-menu__item:hover .mw-nav-menu__link:not(.mw-nav-menu__link--active),
.mw-nav-menu__item:hover .mw-nav-menu__button {
  background: linear-gradient(90deg, rgba(0, 178, 227, 0.1) 0%, rgba(0, 178, 227, 0.05) 100%) !important;
  box-shadow: none !important;
}

.mw-nav-menu--minimized .mw-nav-menu__item--has-children {
  position: relative;
  overflow: visible !important;
}
.mw-nav-menu--minimized .mw-nav-menu__item--has-children::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  bottom: 0;
  width: 10px;
  z-index: 9998;
  background: transparent;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mw-nav-menu--minimized .mw-nav-menu__item--has-children:hover::after, .mw-nav-menu--minimized .mw-nav-menu__item--has-children:hover .mw-nav-menu__submenu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}
.mw-nav-menu--minimized .mw-nav-menu__submenu {
  position: absolute !important;
  left: 100% !important;
  top: 0 !important;
  min-width: 200px !important;
  max-width: 400px !important;
  width: auto !important;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(32, 32, 32, 0.95) 100%) !important;
  border-radius: 8px !important;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3) !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  pointer-events: none !important;
  max-height: none !important;
  overflow: visible !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transform: translateX(-10px) !important;
}
.mw-nav-menu--minimized .mw-nav-menu__submenu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}
.mw-nav-menu--minimized .mw-nav-menu__submenu .mw-nav-menu__text,
.mw-nav-menu--minimized .mw-nav-menu__submenu .mw-nav-menu__subtext {
  opacity: 1 !important;
  visibility: visible !important;
}

.mw-nav-menu__item--has-children::before, .mw-nav-menu__item--has-children::after {
  background: transparent !important;
}
.mw-nav-menu__item--has-children > .mw-nav-menu__link:not(.mw-nav-menu__link--active),
.mw-nav-menu__item--has-children > .mw-nav-menu__button {
  background: transparent !important;
}
.mw-nav-menu__item--has-children:hover {
  background: transparent !important;
}
.mw-nav-menu__item--has-children:hover > .mw-nav-menu__link:not(.mw-nav-menu__link--active),
.mw-nav-menu__item--has-children:hover > .mw-nav-menu__button {
  background: linear-gradient(90deg, rgba(0, 178, 227, 0.2) 0%, rgba(0, 178, 227, 0.1) 100%) !important;
}

.mw-nav-menu--minimized .mw-nav-menu__custom-content {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}
.mw-nav-menu--minimized:hover .mw-nav-menu__custom-content {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.mw-nav-menu__footer:empty,
.mw-nav-menu__custom-content:empty {
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.mw-nav-menu .mw-nav-menu__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent !important;
}
.mw-nav-menu .mw-nav-menu__list {
  flex: 1;
  margin: 0;
  padding: 0;
  height: 100%;
  background: transparent !important;
}
.mw-nav-menu .mw-nav-menu__content {
  padding-bottom: 0;
  margin-bottom: 0;
  background: transparent !important;
}
.mw-nav-menu:hover .mw-nav-menu__content {
  background: transparent !important;
}
.mw-nav-menu:hover .mw-nav-menu__list {
  background: transparent !important;
}
.mw-nav-menu *:not(.mw-nav-menu__header):not(.mw-nav-menu__submenu):not(.mw-nav-menu__link--active):not(.mw-nav-menu__link:hover):not(.mw-nav-menu__button:hover):not(.mw-nav-menu__minimize-toggle):not(.mw-nav-menu__minimize-toggle *) {
  background-color: transparent !important;
}
.mw-nav-menu::before, .mw-nav-menu::after,
.mw-nav-menu *::before, .mw-nav-menu *::after {
  background-color: transparent !important;
}

.mw-nav-menu__submenu {
  background: rgba(0, 0, 0, 0.05) !important;
}
.mw-nav-menu__submenu:not(.mw-nav-menu--minimized .mw-nav-menu__submenu) {
  background: rgba(0, 0, 0, 0.05) !important;
}

.mw-nav-menu__item,
.mw-nav-menu__subitem {
  background: transparent !important;
}

.mw-nav-menu::before, .mw-nav-menu::after {
  display: none !important;
}

.mw-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  user-select: none;
}
.mw-avatar--small {
  width: 24px;
  height: 24px;
  font-size: 10px;
}
.mw-avatar--medium {
  width: 40px;
  height: 40px;
  font-size: 14px;
}
.mw-avatar--large {
  width: 64px;
  height: 64px;
  font-size: 20px;
}
.mw-avatar__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.mw-avatar__initials, .mw-avatar__default {
  line-height: 1;
  font-weight: 600;
}
.mw-avatar--with-tooltip {
  cursor: pointer;
}
.mw-avatar--with-tooltip:hover .mw-avatar__tooltip {
  opacity: 1;
  visibility: visible;
}
.mw-avatar__tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 1000;
  pointer-events: none;
}
.mw-avatar__tooltip-content {
  background: #333;
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}
.mw-avatar__tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
}
.mw-avatar__tooltip-name {
  font-weight: 600;
  margin-bottom: 2px;
}
.mw-avatar__tooltip-email, .mw-avatar__tooltip-job, .mw-avatar__tooltip-username {
  font-size: 11px;
  opacity: 0.9;
  margin-bottom: 1px;
}
.mw-avatar__tooltip-username {
  font-family: monospace;
}

.mw-avatar-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.mw-avatar-group__avatar {
  margin-right: -8px;
  border: 2px solid #FFFFFF;
  position: relative;
  z-index: 1;
}
.mw-avatar-group__avatar:hover {
  z-index: 10;
}
.mw-avatar-group__avatar:last-child {
  margin-right: 0;
}
.mw-avatar-group__overflow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #F3F4F6;
  color: #666;
  font-weight: 600;
  border: 2px solid #FFFFFF;
  cursor: help;
  position: relative;
  z-index: 2;
  transition: background-color 0.2s ease;
}
.mw-avatar-group__overflow:hover {
  background-color: rgb(213.8571428571, 217.2857142857, 224.1428571429);
  z-index: 10;
}
.mw-avatar-group__overflow--small {
  width: 24px;
  height: 24px;
  font-size: 8px;
}
.mw-avatar-group__overflow--medium {
  width: 40px;
  height: 40px;
  font-size: 12px;
}
.mw-avatar-group__overflow--large {
  width: 64px;
  height: 64px;
  font-size: 18px;
}
.mw-avatar-group__overflow-text {
  line-height: 1;
}

.mw-data-grid {
  all: initial;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  width: 100%;
}
.mw-data-grid *,
.mw-data-grid *::before,
.mw-data-grid *::after {
  box-sizing: border-box;
}
.mw-data-grid__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .mw-data-grid__toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
}
.mw-data-grid__toolbar--sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.mw-data-grid__title-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
.mw-data-grid__title-icon {
  color: #00B2E3;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.mw-data-grid__title {
  font-family: "Gotham", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #5B6770;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mw-data-grid__subtitle {
  font-size: 0.8125rem;
  color: #7A8591;
  margin-left: 0.25rem;
}
.mw-data-grid__toolbar-left, .mw-data-grid__toolbar-center, .mw-data-grid__toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mw-data-grid__toolbar-center {
  flex: 1;
  justify-content: center;
}
@media (max-width: 768px) {
  .mw-data-grid__toolbar-center {
    order: 3;
    justify-content: stretch;
  }
}
@media (max-width: 768px) {
  .mw-data-grid__toolbar-right {
    order: 2;
    justify-content: flex-end;
  }
}
.mw-data-grid__toolbar-frame {
  width: 100%;
  background: #FFFFFF;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border: 1px solid #E5E7EB;
  border-bottom: none;
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 0;
  overflow: hidden;
}
.mw-data-grid__container {
  flex: 1;
  overflow: auto;
  position: relative;
}
.mw-data-grid__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}
.mw-data-grid__header {
  background: #F3F4F6;
  position: sticky;
  top: 0;
  z-index: 10;
}
.mw-data-grid__header-row {
  border-bottom: 2px solid #00B2E3;
}
.mw-data-grid__header-cell {
  padding: 0.5rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #5B6770;
  background: #F3F4F6;
  border-right: 1px solid #E5E7EB;
  white-space: nowrap;
  position: relative;
  user-select: none;
}
.mw-data-grid__header-cell:last-child {
  border-right: none;
}
.mw-data-grid__header-cell--sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.mw-data-grid__header-cell--sortable:hover {
  background: #F3F4F6;
}
.mw-data-grid__header-cell--center {
  text-align: center;
}
.mw-data-grid__header-cell--right {
  text-align: right;
}
.mw-data-grid__header-text {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.mw-data-grid__sort-icon {
  font-size: 0.8125rem;
  color: #7A8591;
  transition: color 0.2s ease;
}
.mw-data-grid__header-cell--sortable:hover .mw-data-grid__sort-icon {
  color: #00B2E3;
}
.mw-data-grid__body {
  background: #FFFFFF;
}
.mw-data-grid__row {
  border-bottom: 1px solid #E5E7EB;
  transition: background-color 0.2s ease;
  cursor: default;
}
.mw-data-grid__row:hover {
  background: #F9FAFB;
}
.mw-data-grid__row--alternate {
  background: rgba(243, 244, 246, 0.3);
}
.mw-data-grid__row--alternate:hover {
  background: #F9FAFB;
}
.mw-data-grid__row--selected {
  background: rgba(0, 178, 227, 0.1);
}
.mw-data-grid__row--selected:hover {
  background: rgba(0, 178, 227, 0.15);
}
.mw-data-grid__cell {
  padding: 0.5rem 1rem;
  border-right: 1px solid #E5E7EB;
  vertical-align: middle;
  color: #5B6770;
}
.mw-data-grid__cell:last-child {
  border-right: none;
}
.mw-data-grid__cell--center {
  text-align: center;
}
.mw-data-grid__cell--right {
  text-align: right;
}
.mw-data-grid__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  color: #7A8591;
}
.mw-data-grid__loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #E5E7EB;
  border-top: 3px solid #00B2E3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 0.5rem;
}
.mw-data-grid__loading-text {
  font-size: 0.875rem;
  color: #7A8591;
}
.mw-data-grid__empty-row {
  background: #FFFFFF;
}
.mw-data-grid__empty-row:hover {
  background: #FFFFFF;
}
.mw-data-grid__empty-cell {
  padding: 1.25rem;
  text-align: center;
  border: none;
}
.mw-data-grid__empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #7A8591;
}
.mw-data-grid__empty-icon {
  font-size: 3rem;
  color: #9CA3AF;
}
.mw-data-grid__empty-text {
  font-size: 1rem;
  color: #7A8591;
}
@media (max-width: 576px) {
  .mw-data-grid__table {
    font-size: 0.8125rem;
  }
  .mw-data-grid__header-cell, .mw-data-grid__cell {
    padding: 0.5rem;
  }
  .mw-data-grid__title {
    font-size: 1rem;
  }
  .mw-data-grid__toolbar {
    padding: 0.5rem;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mw-data-grid-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: flex-end;
}

.mw-data-grid-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
}
.mw-data-grid-badge--success {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.mw-data-grid-badge--warning {
  background: rgba(239, 184, 72, 0.2);
  color: rgb(192.1959798995, 134.432160804, 16.8040201005);
}
.mw-data-grid-badge--danger {
  background: rgba(241, 110, 66, 0.1);
  color: #F16E42;
}
.mw-data-grid-badge--info {
  background: rgba(0, 178, 227, 0.1);
  color: #00B2E3;
}

.mw-data-grid-isolated {
  isolation: isolate;
  contain: style;
}
.mw-data-grid-isolated .mw-data-grid {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
  color: #5B6770 !important;
}

.mw-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  min-height: 48px;
  position: relative;
  width: 100%;
}
.mw-toolbar--sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.mw-toolbar__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
.mw-toolbar__center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}
.mw-toolbar__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.mw-toolbar-element {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mw-toolbar-element--left {
  flex: 0 0 auto;
  min-width: 0;
}
.mw-toolbar-element--right {
  margin-left: auto !important;
  flex: 0 0 auto;
}

.mw-toolbar .mw-toolbar-element--right {
  margin-left: auto !important;
}

.mw-toolbar__title-group {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  min-width: 0;
}
.mw-toolbar__title-group .mw-toolbar__title {
  margin: 0;
  color: #5B6770;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.mw-toolbar__title-group .mw-toolbar__title i {
  color: #00B2E3;
  font-size: 0.8125rem;
}
.mw-toolbar__title-group .mw-toolbar__subtitle {
  color: #7A8591;
  font-size: 0.75rem;
  white-space: nowrap;
}

.mw-toolbar__actions,
.mw-toolbar__tools {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mw-toolbar__action-groups {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mw-toolbar__action-group {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0 0.25rem;
}
.mw-toolbar__action-group:not(:last-child) {
  border-right: 1px solid #F3F4F6;
  padding-right: 0.5rem;
}
.mw-toolbar__action-group--primary {
  border-left: 1px solid #F3F4F6;
  padding-left: 0.5rem;
}

.mw-toolbar__status {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mw-toolbar__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 0.25rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}
.mw-toolbar__badge--info {
  background: rgba(0, 178, 227, 0.1);
  color: #00B2E3;
}
.mw-toolbar__badge--success {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.mw-toolbar__badge--warning {
  background: rgba(239, 184, 72, 0.1);
  color: #EFB848;
}
.mw-toolbar__badge--error {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.mw-toolbar__custom-layout {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
}

.mw-toolbar__section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mw-toolbar__section--title {
  flex: 1;
  min-width: 0;
}
.mw-toolbar__section--tools {
  flex: 0 0 auto;
}
.mw-toolbar__section--actions {
  flex: 0 0 auto;
}

.mw-data-grid__toolbar {
  position: relative;
}
.mw-data-grid__toolbar .mw-toolbar {
  border-bottom: 1px solid #E5E7EB;
}
.mw-data-grid__toolbar.mw-toolbar--sticky .mw-toolbar {
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .mw-toolbar {
    flex-wrap: wrap;
    min-height: auto;
  }
  .mw-toolbar__left, .mw-toolbar__center, .mw-toolbar__right {
    flex: 1 1 auto;
  }
  .mw-toolbar__center {
    order: 3;
    flex-basis: 100%;
    margin-top: 0.25rem;
  }
  .mw-toolbar__custom-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .mw-toolbar__custom-layout .mw-toolbar__section {
    justify-content: space-between;
  }
  .mw-toolbar__custom-layout .mw-toolbar__section--tools {
    order: 2;
  }
  .mw-toolbar__custom-layout .mw-toolbar__section--actions {
    order: 3;
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .mw-toolbar__title-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .mw-toolbar__action-groups {
    flex-direction: column;
    gap: 0.25rem;
    align-items: stretch;
  }
  .mw-toolbar__action-groups .mw-toolbar__action-group {
    border: none;
    padding: 0;
    justify-content: center;
  }
}
.mw-data-grid__row--editing {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
}
.mw-data-grid__row--editing .mw-data-grid__cell {
  vertical-align: middle;
}
.mw-data-grid__row--editing .mw-data-grid__cell .mw-text-input {
  margin: 0;
}
.mw-data-grid__row--editing .mw-data-grid__cell .mw-text-input__wrapper {
  border-radius: 4px;
  min-height: 32px;
}
.mw-data-grid__row--editing .mw-data-grid__cell .mw-text-input__input {
  padding: 4px 8px;
  font-size: 14px;
}
.mw-data-grid__row--new {
  background-color: #e8f5e9;
  border: 2px solid #10B981;
}
.mw-data-grid__row--selected {
  background-color: #e3f2fd;
}
.mw-data-grid__row--selected:hover {
  background-color: rgb(203.2, 230.95, 251.3);
}
.mw-data-grid__row--pending-delete {
  background-color: #ffebee;
  opacity: 0.7;
}
.mw-data-grid__row--pending-delete:hover {
  background-color: rgb(255, 209.5, 216.325);
}

.mw-data-grid__selection-cell,
.mw-data-grid__selection-header {
  width: 40px;
  text-align: center;
  vertical-align: middle;
}
.mw-data-grid__selection-cell input[type=checkbox],
.mw-data-grid__selection-cell input[type=radio],
.mw-data-grid__selection-header input[type=checkbox],
.mw-data-grid__selection-header input[type=radio] {
  margin: 0;
  cursor: pointer;
  transform: scale(1.1);
}

.mw-data-grid__selection-header {
  background-color: #F8F9FA;
  font-weight: 500;
}

.mw-data-grid__actions-cell,
.mw-data-grid__actions-header {
  width: 120px;
  text-align: center;
  vertical-align: middle;
}

.mw-data-grid__actions-header {
  background-color: #F8F9FA;
  font-weight: 500;
}

.mw-data-grid__row-actions,
.mw-data-grid__edit-actions {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.mw-data-grid__row-actions .mw-btn {
  min-width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 4px;
  font-size: 12px;
}
.mw-data-grid__row-actions .mw-btn--ghost {
  background: transparent;
  border: 1px solid transparent;
  color: #7A8591;
}
.mw-data-grid__row-actions .mw-btn--ghost:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
  color: #5B6770;
}
.mw-data-grid__row-actions .mw-btn--ghost.mw-btn--danger:hover {
  background: #FEF2F2;
  border-color: #EF4444;
  color: #EF4444;
}

.mw-data-grid__edit-actions .mw-btn {
  min-width: 60px;
  height: 32px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.mw-data-grid__edit-actions .mw-btn i {
  margin-right: 4px;
}
.mw-data-grid__edit-actions .mw-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mw-toolbar__add-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px;
  background: #F0FDF4;
  border: 1px solid #10B981;
  border-radius: 6px;
  margin-left: 8px;
}

.mw-toolbar__badge--info {
  background: #00B2E3;
  color: white;
}
.mw-toolbar__badge--warning {
  background: #EFB848;
  color: white;
}

.mw-data-grid__cell .mw-text-input--error .mw-text-input__wrapper {
  border-color: #EF4444;
}
.mw-data-grid__cell .mw-text-input--error .mw-text-input__wrapper:focus-within {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}
.mw-data-grid__cell .mw-text-input--success .mw-text-input__wrapper {
  border-color: #10B981;
}
.mw-data-grid__cell .mw-text-input--success .mw-text-input__wrapper:focus-within {
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.mw-data-grid__row--saving {
  opacity: 0.7;
  pointer-events: none;
}
.mw-data-grid__row--saving::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #00B2E3;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 768px) {
  .mw-data-grid__row-actions,
  .mw-data-grid__edit-actions {
    flex-direction: column;
    gap: 2px;
  }
  .mw-data-grid__row-actions .mw-btn,
  .mw-data-grid__edit-actions .mw-btn {
    width: 100%;
    min-width: unset;
  }
  .mw-data-grid__actions-cell,
  .mw-data-grid__actions-header {
    width: 80px;
  }
  .mw-toolbar__add-actions {
    flex-direction: column;
    gap: 4px;
  }
  .mw-toolbar__add-actions .mw-btn {
    width: 100%;
  }
}
@media (prefers-contrast: high) {
  .mw-data-grid__row--editing {
    border-width: 2px;
  }
  .mw-data-grid__row--new {
    border-width: 3px;
  }
  .mw-data-grid__row--selected {
    border: 2px solid #00B2E3;
  }
  .mw-data-grid__row--pending-delete {
    border: 2px solid #EF4444;
  }
  .mw-data-grid__row-actions .mw-btn--ghost {
    border-width: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mw-data-grid__row--saving::after {
    animation: none;
  }
  .mw-data-grid__row-actions .mw-btn,
  .mw-data-grid__edit-actions .mw-btn {
    transition: none;
  }
}
@media print {
  .mw-data-grid__row-actions,
  .mw-data-grid__edit-actions {
    display: none;
  }
  .mw-data-grid__selection-cell,
  .mw-data-grid__selection-header,
  .mw-data-grid__actions-cell,
  .mw-data-grid__actions-header {
    display: none;
  }
  .mw-data-grid__row--editing, .mw-data-grid__row--new, .mw-data-grid__row--selected, .mw-data-grid__row--pending-delete {
    background: white !important;
    border: none !important;
  }
}
.mw-dialog-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  box-sizing: border-box;
}

.mw-dialog {
  background: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  max-width: 90vw;
  max-height: 90vh;
  min-width: 320px;
  width: 600px;
}
.mw-dialog__header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E7EB;
  background-color: #F8F9FA;
  border-radius: 0.5rem 0.5rem 0 0;
}
.mw-dialog__title-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mw-dialog__icon {
  color: #00B2E3;
  font-size: 1rem;
}
.mw-dialog__title {
  font-size: 1rem;
  font-weight: 700;
  color: #5B6770;
  margin: 0;
}
.mw-dialog__close-button {
  background: none;
  border: none;
  color: #7A8591;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: all 0.15s ease-in-out;
}
.mw-dialog__close-button:hover {
  background-color: rgba(122, 133, 145, 0.1);
  color: #5B6770;
}
.mw-dialog__close-button:active {
  background-color: rgba(122, 133, 145, 0.2);
}
.mw-dialog__body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  color: #5B6770;
  line-height: 1.6;
}
.mw-dialog__footer {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E5E7EB;
  background-color: #F8F9FA;
  border-radius: 0 0 0.5rem 0.5rem;
  gap: 0.5rem;
}
.mw-dialog__default-buttons {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}
.mw-dialog__custom-buttons {
  display: flex;
  gap: 0.5rem;
}
.mw-dialog--fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  border-radius: 0;
  z-index: 1001;
}
.mw-dialog--fullscreen .mw-dialog__header,
.mw-dialog--fullscreen .mw-dialog__footer {
  border-radius: 0;
}
.mw-dialog--fullscreen-center {
  align-items: center;
  justify-content: center;
}
.mw-dialog--fullscreen-top {
  align-items: flex-start;
  justify-content: center;
  padding-top: 1.25rem;
}
.mw-dialog--fullscreen-bottom {
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
}
.mw-dialog--fullscreen-left {
  align-items: center;
  justify-content: flex-start;
  padding-left: 1.25rem;
}
.mw-dialog--fullscreen-right {
  align-items: center;
  justify-content: flex-end;
  padding-right: 1.25rem;
}

@media (max-width: 768px) {
  .mw-dialog-backdrop {
    padding: 0.5rem;
  }
  .mw-dialog {
    min-width: 280px;
    width: 100%;
  }
  .mw-dialog__header, .mw-dialog__body, .mw-dialog__footer {
    padding: 0.5rem;
  }
  .mw-dialog__footer {
    flex-direction: column;
    gap: 0.5rem;
  }
  .mw-dialog__footer__default-buttons, .mw-dialog__footer__custom-buttons {
    width: 100%;
  }
}
@keyframes mw-dialog-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.mw-dialog-backdrop {
  animation: mw-dialog-fade-in 0.2s ease-out;
}

.mw-dialog {
  animation: mw-dialog-fade-in 0.2s ease-out;
}

.mw-tabs {
  display: flex;
  flex-direction: column;
  border: 1px solid #E5E7EB;
  border-radius: 0.25rem;
  background: #FFFFFF !important;
  box-shadow: 0 1px 3px rgba(91, 103, 112, 0.1);
  overflow: hidden;
}

.mw-tabs-header {
  display: flex;
  border-bottom: 1px solid #E5E7EB;
  background: #F8F9FA !important;
  min-height: 48px;
}

.mw-tab-button {
  padding: 12px 24px;
  cursor: pointer;
  background: transparent !important;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #5B6770 !important;
  transition: all 0.2s ease-in-out;
  border-bottom: 3px solid transparent;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.mw-tab-button i {
  font-size: 16px;
  margin-right: 4px;
}
.mw-tab-button:hover:not(.active):not(:disabled) {
  background: #F0F9FF !important;
  color: #00B2E3 !important;
}
.mw-tab-button.active {
  background: #FFFFFF !important;
  color: #00B2E3 !important;
  border-bottom-color: #00B2E3 !important;
  font-weight: 600;
  box-shadow: inset 0 -3px 0 #00B2E3;
}
.mw-tab-button:disabled {
  cursor: not-allowed;
  color: #9CA3AF;
  opacity: 0.6;
}
.mw-tab-button:focus {
  outline: 2px solid #00B2E3;
  outline-offset: -2px;
}
.mw-tab-button.active:focus {
  outline-color: #F16E42;
}

.mw-tabs-content {
  padding: 24px;
  background: #FFFFFF !important;
  color: #5B6770 !important;
  min-height: 200px;
  flex: 1;
}
.mw-tabs-content:empty::before {
  content: "No content available";
  color: #9CA3AF;
  font-style: italic;
  display: block;
  text-align: center;
  padding: 48px 0;
}

.mw-tab-content.active {
  display: block;
}
.mw-tab-content.inactive {
  display: none;
}

@media (max-width: 768px) {
  .mw-tabs-header {
    flex-wrap: wrap;
    min-height: auto;
  }
  .mw-tab-button {
    padding: 8px 16px;
    font-size: 13px;
    flex: 1;
    min-width: 0;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .mw-tab-button {
    flex-direction: column;
    gap: 4px;
  }
  .mw-tab-button i {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .mw-tabs-content {
    padding: 16px;
  }
}
@media (prefers-contrast: high) {
  .mw-tabs {
    border-width: 2px;
  }
  .mw-tab-button.active {
    border-bottom-width: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mw-tab-button {
    transition: none;
  }
}
/*
@media (prefers-color-scheme: dark) {
  .mw-tabs {
    background: color.adjust($mineware-slate-gray, $lightness: -35%);
    border-color: color.adjust($mineware-slate-gray, $lightness: -20%);
  }

  .mw-tabs-header {
    background: color.adjust($mineware-slate-gray, $lightness: -30%);
    border-bottom-color: color.adjust($mineware-slate-gray, $lightness: -20%);
  }

  .mw-tab-button {
    color: color.adjust($mineware-slate-gray, $lightness: 40%);

    &:hover:not(.active):not(:disabled) {
      background: color.adjust($mineware-process-blue, $lightness: -20%);
      color: color.adjust($mineware-process-blue, $lightness: 20%);
    }    &.active {
      background: color.adjust($mineware-slate-gray, $lightness: -35%);
      color: color.adjust($mineware-process-blue, $lightness: 10%);
      border-bottom-color: color.adjust($mineware-process-blue, $lightness: 10%);
    }
  }

  .mw-tabs-content {
    background: color.adjust($mineware-slate-gray, $lightness: -35%);
    color: color.adjust($mineware-slate-gray, $lightness: 40%);
  }
}
*/
.mw-toast {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 300px;
  max-width: 400px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #00B2E3;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.mw-toast--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mw-toast--top-left {
  top: 24px;
  left: 24px;
}
.mw-toast--top-right {
  top: 24px;
  right: 24px;
}
.mw-toast--bottom-left {
  bottom: 24px;
  left: 24px;
}
.mw-toast--bottom-right {
  bottom: 24px;
  right: 24px;
}
.mw-toast--top-center {
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
}
.mw-toast--top-center.mw-toast--visible {
  transform: translateX(-50%) translateY(0);
}
.mw-toast--bottom-center {
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
}
.mw-toast--bottom-center.mw-toast--visible {
  transform: translateX(-50%) translateY(0);
}
.mw-toast--center {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0.95);
}
.mw-toast--center.mw-toast--visible {
  transform: translateX(-50%) translateY(-50%) scale(1);
}
.mw-toast--info {
  border-left-color: #00B2E3;
}
.mw-toast--info .mw-toast__icon {
  color: #00B2E3;
}
.mw-toast--success {
  border-left-color: #10B981;
}
.mw-toast--success .mw-toast__icon {
  color: #10B981;
}
.mw-toast--warning {
  border-left-color: #EFB848;
  background: rgba(239, 184, 72, 0.05);
}
.mw-toast--warning .mw-toast__icon {
  color: rgb(215.6457286432, 150.8341708543, 18.8542713568);
}
.mw-toast--error {
  border-left-color: #F16E42;
  background: rgba(241, 110, 66, 0.05);
}
.mw-toast--error .mw-toast__icon {
  color: #F16E42;
}

.mw-toast__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  font-size: 16px;
  color: #00B2E3;
}

.mw-toast__content {
  flex: 1;
  min-width: 0;
}

.mw-toast__message {
  color: #5B6770;
  font-weight: 400;
  margin: 0;
  word-wrap: break-word;
  line-height: 1.4;
}

.mw-toast__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #7A8591;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: -2px;
  transition: all 0.15s ease-in-out;
  font-size: 12px;
}
.mw-toast__close:hover {
  background: rgba(122, 133, 145, 0.1);
  color: #5B6770;
}
.mw-toast__close:focus {
  outline: 2px solid #00B2E3;
  outline-offset: 1px;
}
.mw-toast__close:active {
  background: rgba(122, 133, 145, 0.2);
}

.mw-toast-container {
  position: fixed;
  z-index: 1050;
  pointer-events: none;
}
.mw-toast-container--top-left {
  top: 24px;
  left: 24px;
}
.mw-toast-container--top-right {
  top: 24px;
  right: 24px;
}
.mw-toast-container--bottom-left {
  bottom: 24px;
  left: 24px;
}
.mw-toast-container--bottom-right {
  bottom: 24px;
  right: 24px;
}
.mw-toast-container--top-center {
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mw-toast-container--bottom-center {
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.mw-toast-container--center {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mw-toast-container .mw-toast {
  position: relative;
  margin-bottom: 12px;
  pointer-events: auto;
}
.mw-toast-container .mw-toast:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .mw-toast {
    min-width: 280px;
    max-width: calc(100vw - 32px);
    margin: 0 16px;
  }
  .mw-toast-container--top-left, .mw-toast-container--top-right {
    top: 16px;
    left: 16px;
    right: 16px;
  }
  .mw-toast-container--bottom-left, .mw-toast-container--bottom-right {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  .mw-toast-container--top-center {
    top: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .mw-toast-container--bottom-center {
    bottom: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .mw-toast-container--center {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
  }
  .mw-toast--top-left,
  .mw-toast--top-right {
    top: 16px;
    left: 16px;
    right: 16px;
  }
  .mw-toast--bottom-left,
  .mw-toast--bottom-right {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  .mw-toast--top-center {
    top: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-20px);
  }
  .mw-toast--top-center.mw-toast--visible {
    transform: translateX(-50%) translateY(0);
  }
  .mw-toast--bottom-center {
    bottom: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(20px);
  }
  .mw-toast--bottom-center.mw-toast--visible {
    transform: translateX(-50%) translateY(0);
  }
  .mw-toast--center {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-50%) scale(0.95);
  }
  .mw-toast--center.mw-toast--visible {
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}
@media (prefers-contrast: high) {
  .mw-toast {
    border-width: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  .mw-toast--warning, .mw-toast--error {
    background: #FFFFFF;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mw-toast {
    transition: opacity 0.15s ease-in-out;
    transform: none;
  }
  .mw-toast--visible {
    transform: none;
  }
}
.mw-toast__action {
  margin-top: 8px;
  padding: 0;
}

.mw-toast__action-btn {
  background: none;
  border: 1px solid #00B2E3;
  color: #00B2E3;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mw-toast__action-btn:hover {
  background: #00B2E3;
  color: #FFFFFF;
}
.mw-toast__action-btn:focus {
  outline: 2px solid #00B2E3;
  outline-offset: 2px;
}
.mw-toast__action-btn:active {
  transform: translateY(1px);
}

.mw-toast--clickable {
  cursor: pointer;
}
.mw-toast--clickable:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.mw-toast--clickable:active {
  transform: translateY(0);
}

.mw-toast--paused .mw-toast__progress {
  animation-play-state: paused;
}

.mw-toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(0, 178, 227, 0.3);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.mw-toast__progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #00B2E3;
  animation: toast-progress linear;
  transform-origin: left;
}
.mw-toast--success .mw-toast__progress {
  background: rgba(16, 185, 129, 0.3);
}
.mw-toast--success .mw-toast__progress::after {
  background: #10B981;
}
.mw-toast--warning .mw-toast__progress {
  background: rgba(239, 184, 72, 0.3);
}
.mw-toast--warning .mw-toast__progress::after {
  background: rgb(215.6457286432, 150.8341708543, 18.8542713568);
}
.mw-toast--error .mw-toast__progress {
  background: rgba(241, 110, 66, 0.3);
}
.mw-toast--error .mw-toast__progress::after {
  background: #F16E42;
}

@keyframes toast-progress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
.mw-toast--theme-dark {
  background: rgb(10.9827586207, 12.4310344828, 13.5172413793);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.mw-toast--theme-dark .mw-toast__message {
  color: #FFFFFF;
}
.mw-toast--theme-dark .mw-toast__close {
  color: rgba(255, 255, 255, 0.7);
}
.mw-toast--theme-dark .mw-toast__close:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}
.mw-toast--theme-dark .mw-toast__action-btn {
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}
.mw-toast--theme-dark .mw-toast__action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}
.mw-toast--theme-dark.mw-toast--warning {
  background: rgba(239, 184, 72, 0.1);
}
.mw-toast--theme-dark.mw-toast--error {
  background: rgba(241, 110, 66, 0.1);
}

.mw-toast--style-filled.mw-toast--info {
  background: #00B2E3;
  color: #FFFFFF;
  border-left: none;
}
.mw-toast--style-filled.mw-toast--info .mw-toast__icon,
.mw-toast--style-filled.mw-toast--info .mw-toast__message {
  color: #FFFFFF;
}
.mw-toast--style-filled.mw-toast--info .mw-toast__close {
  color: rgba(255, 255, 255, 0.8);
}
.mw-toast--style-filled.mw-toast--info .mw-toast__close:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
}
.mw-toast--style-filled.mw-toast--success {
  background: #10B981;
  color: #FFFFFF;
  border-left: none;
}
.mw-toast--style-filled.mw-toast--success .mw-toast__icon,
.mw-toast--style-filled.mw-toast--success .mw-toast__message {
  color: #FFFFFF;
}
.mw-toast--style-filled.mw-toast--success .mw-toast__close {
  color: rgba(255, 255, 255, 0.8);
}
.mw-toast--style-filled.mw-toast--success .mw-toast__close:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
}
.mw-toast--style-filled.mw-toast--warning {
  background: rgb(215.6457286432, 150.8341708543, 18.8542713568);
  color: #FFFFFF;
  border-left: none;
}
.mw-toast--style-filled.mw-toast--warning .mw-toast__icon,
.mw-toast--style-filled.mw-toast--warning .mw-toast__message {
  color: #FFFFFF;
}
.mw-toast--style-filled.mw-toast--warning .mw-toast__close {
  color: rgba(255, 255, 255, 0.8);
}
.mw-toast--style-filled.mw-toast--warning .mw-toast__close:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
}
.mw-toast--style-filled.mw-toast--error {
  background: #F16E42;
  color: #FFFFFF;
  border-left: none;
}
.mw-toast--style-filled.mw-toast--error .mw-toast__icon,
.mw-toast--style-filled.mw-toast--error .mw-toast__message {
  color: #FFFFFF;
}
.mw-toast--style-filled.mw-toast--error .mw-toast__close {
  color: rgba(255, 255, 255, 0.8);
}
.mw-toast--style-filled.mw-toast--error .mw-toast__close:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
}

.mw-toast--style-outlined {
  background: transparent;
  border: 2px solid;
  border-left-width: 4px;
}
.mw-toast--style-outlined.mw-toast--info {
  border-color: #00B2E3;
}
.mw-toast--style-outlined.mw-toast--success {
  border-color: #10B981;
}
.mw-toast--style-outlined.mw-toast--warning {
  border-color: #EFB848;
}
.mw-toast--style-outlined.mw-toast--error {
  border-color: #F16E42;
}

.mw-toast--style-minimal {
  background: rgba(255, 255, 255, 0.95);
  border-left: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
.mw-toast--style-minimal .mw-toast__icon {
  opacity: 0.8;
}

.mw-toast-provider {
  position: fixed;
  z-index: 1050;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mw-toast-provider--top-left {
  top: 24px;
  left: 24px;
}
.mw-toast-provider--top-right {
  top: 24px;
  right: 24px;
}
.mw-toast-provider--bottom-left {
  bottom: 24px;
  left: 24px;
  flex-direction: column-reverse;
}
.mw-toast-provider--bottom-right {
  bottom: 24px;
  right: 24px;
  flex-direction: column-reverse;
}
.mw-toast-provider--top-center {
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.mw-toast-provider--bottom-center {
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column-reverse;
  align-items: center;
}
.mw-toast-provider--center {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  align-items: center;
  justify-content: center;
}
.mw-toast-provider .mw-toast {
  position: relative;
  pointer-events: auto;
  margin-bottom: 0;
}

.mw-toast-enter {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
}
.mw-toast-enter.mw-toast--top-center {
  transform: translateX(-50%) translateY(-20px) scale(0.95);
}
.mw-toast-enter.mw-toast--bottom-center {
  transform: translateX(-50%) translateY(20px) scale(0.95);
}
.mw-toast-enter.mw-toast--center {
  transform: translateX(-50%) translateY(-50%) scale(0.9);
}

.mw-toast-enter-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mw-toast-enter-active.mw-toast--top-center {
  transform: translateX(-50%) translateY(0) scale(1);
}
.mw-toast-enter-active.mw-toast--bottom-center {
  transform: translateX(-50%) translateY(0) scale(1);
}
.mw-toast-enter-active.mw-toast--center {
  transform: translateX(-50%) translateY(-50%) scale(1);
}

.mw-toast-exit {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.mw-toast-exit.mw-toast--top-center {
  transform: translateX(-50%) translateY(0) scale(1);
}
.mw-toast-exit.mw-toast--bottom-center {
  transform: translateX(-50%) translateY(0) scale(1);
}
.mw-toast-exit.mw-toast--center {
  transform: translateX(-50%) translateY(-50%) scale(1);
}

.mw-toast-exit-active {
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.2s cubic-bezier(0.4, 0, 1, 1);
}
.mw-toast-exit-active.mw-toast--top-center {
  transform: translateX(-50%) translateY(-10px) scale(0.95);
}
.mw-toast-exit-active.mw-toast--bottom-center {
  transform: translateX(-50%) translateY(10px) scale(0.95);
}
.mw-toast-exit-active.mw-toast--center {
  transform: translateX(-50%) translateY(-50%) scale(0.9);
}

@media (prefers-color-scheme: dark) {
  .mw-toast--theme-auto {
    background: rgb(10.9827586207, 12.4310344828, 13.5172413793);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  .mw-toast--theme-auto .mw-toast__message {
    color: #FFFFFF;
  }
  .mw-toast--theme-auto .mw-toast__close {
    color: rgba(255, 255, 255, 0.7);
  }
  .mw-toast--theme-auto .mw-toast__close:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
  }
  .mw-toast--theme-auto .mw-toast__action-btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
  }
  .mw-toast--theme-auto .mw-toast__action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
  }
  .mw-toast--theme-auto.mw-toast--warning {
    background: rgba(239, 184, 72, 0.1);
  }
  .mw-toast--theme-auto.mw-toast--error {
    background: rgba(241, 110, 66, 0.1);
  }
}
.mw-input-base, .mw-dropdown-list__single-selected, .mw-dropdown-list__multi-selected, .mw-dropdown-list__search {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.875rem;
  color: #5B6770;
  font-family: inherit;
}
.mw-input-base::placeholder, .mw-dropdown-list__single-selected::placeholder, .mw-dropdown-list__multi-selected::placeholder, .mw-dropdown-list__search::placeholder {
  color: #9CA3AF;
  font-style: italic;
}
.mw-input-base:disabled, .mw-dropdown-list__single-selected:disabled, .mw-dropdown-list__multi-selected:disabled, .mw-dropdown-list__search:disabled {
  cursor: not-allowed;
  color: #7A8591;
}
.mw-input-base[readonly], [readonly].mw-dropdown-list__single-selected, [readonly].mw-dropdown-list__multi-selected, [readonly].mw-dropdown-list__search {
  cursor: default;
  background: #FCFCFC;
}

.mw-text-input {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}
.mw-text-input__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #5B6770;
  margin-bottom: 0.25rem;
}
.mw-text-input__required {
  color: #EF4444;
  margin-left: 2px;
}
.mw-text-input__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 0.375rem;
  transition: all 0.15s ease-in-out;
}
.mw-text-input__wrapper:focus-within {
  border-color: #00B2E3;
  box-shadow: 0 0 0 2px rgba(0, 178, 227, 0.1);
}
.mw-text-input__wrapper--has-error {
  border-color: #EF4444;
}
.mw-text-input__wrapper--has-error:focus-within {
  border-color: #EF4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}
.mw-text-input__wrapper--has-success {
  border-color: #10B981;
}
.mw-text-input__wrapper--disabled {
  background: #F3F4F6;
  cursor: not-allowed;
}
.mw-text-input__wrapper--small .mw-text-input__input {
  padding: 0.375rem 0.5625rem;
  font-size: 0.8125rem;
}
.mw-text-input__wrapper--large .mw-text-input__input {
  padding: 0.625rem 0.9375rem;
  font-size: 1rem;
}
.mw-text-input__prefix, .mw-text-input__suffix {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #7A8591;
  font-size: 0.8125rem;
}
.mw-text-input__prefix {
  padding-left: 0.75rem;
}
.mw-text-input__suffix {
  padding-right: 0.75rem;
}
.mw-text-input__prefix-text, .mw-text-input__suffix-text {
  white-space: nowrap;
  font-weight: 500;
}
.mw-text-input__icon {
  color: #7A8591;
  font-size: 0.875rem;
}
.mw-text-input__icon--left {
  margin-right: 0.25rem;
}
.mw-text-input__icon--right {
  margin-left: 0.25rem;
}
.mw-text-input__password-toggle, .mw-text-input__clear-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: #7A8591;
  cursor: pointer;
  border-radius: 0.25rem;
  margin-right: 0.25rem;
  transition: all 0.15s ease-in-out;
}
.mw-text-input__password-toggle:hover, .mw-text-input__clear-button:hover {
  background: #F3F4F6;
  color: #5B6770;
}
.mw-text-input__password-toggle:focus, .mw-text-input__clear-button:focus {
  outline: 2px solid #00B2E3;
  outline-offset: 1px;
}
.mw-text-input__character-count {
  font-size: 0.75rem;
  color: #7A8591;
  text-align: right;
}
.mw-text-input__help-text {
  font-size: 0.75rem;
  color: #7A8591;
  margin-top: 0.25rem;
}
.mw-text-input__error-message {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 0.25rem;
}
.mw-text-input__error-message i {
  font-size: 0.8125rem;
}
.mw-text-input__success-message {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #10B981;
  margin-top: 0.25rem;
}
.mw-text-input__success-message i {
  font-size: 0.8125rem;
}

@media (max-width: 768px) {
  .mw-text-input__wrapper--small .mw-text-input__input {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
  .mw-text-input__wrapper--large .mw-text-input__input {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}
@media (prefers-contrast: high) {
  .mw-text-input__wrapper {
    border-width: 2px;
  }
  .mw-text-input__wrapper:focus-within {
    box-shadow: 0 0 0 3px currentColor;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mw-text-input__wrapper {
    transition: none;
  }
  .mw-text-input__password-toggle, .mw-text-input__clear-button {
    transition: none;
  }
}
.mw-dropdown-list__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  min-width: 40px;
  background: transparent;
  border: none;
  border-radius: 0 0.375rem 0.375rem 0;
  color: #7A8591;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-left: -1px;
  position: relative;
}
.mw-dropdown-list__arrow:hover, .mw-dropdown-list__arrow:focus {
  background: #F3F4F6;
  color: #007BD4;
  outline: none;
}
.mw-dropdown-list__arrow i {
  font-size: 1.1em;
  pointer-events: none;
}

.mw-dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.mw-dropdown-list--disabled {
  opacity: 0.6;
  pointer-events: none;
}
.mw-dropdown-list--loading {
  opacity: 0.8;
}
.mw-dropdown-list__label {
  font-weight: 600;
  margin-bottom: 2px;
  color: #5B6770;
  font-size: 0.9rem;
}
.mw-dropdown-list__loading {
  color: #007BD4;
  font-style: italic;
  padding: 8px 0;
  text-align: center;
  font-weight: 500;
}
.mw-dropdown-list__control {
  position: relative;
}
.mw-dropdown-list__single-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 8px 12px;
  min-height: 40px;
}
.mw-dropdown-list__single-selected:hover {
  border-color: rgb(0, 93.4103773585, 161);
}
.mw-dropdown-list__single-selected:focus {
  outline: 2px solid #007BD4;
  outline-offset: 2px;
}
.mw-dropdown-list__multi-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  cursor: pointer;
  padding: 4px 8px;
  min-height: 40px;
}
.mw-dropdown-list__multi-selected:hover {
  border-color: rgb(0, 93.4103773585, 161);
}
.mw-dropdown-list__multi-selected:focus {
  outline: 2px solid #007BD4;
  outline-offset: 2px;
}
.mw-dropdown-list__multi-chip {
  background: #007BD4;
  color: #fff;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 0.9em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mw-dropdown-list__multi-remove {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.2em;
  line-height: 1;
  padding: 0;
  margin-left: 4px;
}
.mw-dropdown-list__multi-remove:hover {
  opacity: 0.8;
}
.mw-dropdown-list__placeholder {
  color: #9CA3AF;
  opacity: 0.7;
  font-style: italic;
}
.mw-dropdown-list__arrow::after {
  content: "▼";
  font-size: 0.8em;
  color: #7A8591;
}
.mw-dropdown-list__search {
  margin-bottom: 6px;
  width: 100%;
  box-sizing: border-box;
}
.mw-dropdown-list__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #007BD4;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 2px 0 0 0;
}
.mw-dropdown-list__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1em;
}
.mw-dropdown-list__option:hover {
  background: #f0f0f0;
}
.mw-dropdown-list__option.selected {
  background: #e6f0fa;
  color: #007BD4;
}
.mw-dropdown-list__option.active {
  background: #e6f0fa;
  outline: 2px solid #007BD4;
}
.mw-dropdown-list__option:focus {
  outline: 2px solid #007BD4;
  background: #e6f0fa;
}
.mw-dropdown-list__no-results {
  color: #F16E42;
  font-style: italic;
  padding: 8px 12px;
  text-align: center;
}
.mw-dropdown-list__error {
  color: #F16E42;
  background: #fff0f0;
  border: 1px solid #F16E42;
  border-radius: 4px;
  padding: 8px 12px;
  margin-top: 4px;
  font-weight: 500;
  text-align: center;
}

html, body {
  overflow-x: visible !important;
}

.mw-layout,
.mw-layout__sidebar,
.mw-nav-menu {
  overflow: visible !important;
  position: relative !important;
}

.mw-nav-menu--minimized, .mw-nav-menu:not(.mw-nav-menu--minimized) {
  position: relative !important;
  overflow: visible !important;
}
.mw-nav-menu::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -18px;
  width: 18px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background-color: transparent !important;
}

.mw-nav-menu__minimize-toggle {
  position: absolute !important;
  top: 50% !important;
  right: -18px !important;
  transform: translateY(-50%) !important;
  width: 36px !important;
  height: 36px !important;
  z-index: 20000 !important;
  visibility: visible !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  background-color: #00B2E3 !important;
  border: 3px solid #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.mw-nav-menu__minimize-toggle i {
  display: flex !important;
  visibility: visible !important;
  color: #ffffff !important;
  align-items: center !important;
  justify-content: center !important;
}

.mw-layout__sidebar {
  z-index: 100 !important;
  overflow-x: visible !important;
}
.mw-layout--nav-minimized .mw-layout__sidebar {
  overflow: visible !important;
}

.mw-component-container,
.mw-data-grid,
.mw-text-input,
.mw-button,
.mw-dialog,
.mw-tabs,
.mw-toast,
.mw-nav-menu,
.mw-filter-page,
.mw-avatar {
  box-sizing: border-box;
}
.mw-component-container *, .mw-component-container *::before, .mw-component-container *::after,
.mw-data-grid *,
.mw-data-grid *::before,
.mw-data-grid *::after,
.mw-text-input *,
.mw-text-input *::before,
.mw-text-input *::after,
.mw-button *,
.mw-button *::before,
.mw-button *::after,
.mw-dialog *,
.mw-dialog *::before,
.mw-dialog *::after,
.mw-tabs *,
.mw-tabs *::before,
.mw-tabs *::after,
.mw-toast *,
.mw-toast *::before,
.mw-toast *::after,
.mw-nav-menu *,
.mw-nav-menu *::before,
.mw-nav-menu *::after,
.mw-filter-page *,
.mw-filter-page *::before,
.mw-filter-page *::after,
.mw-avatar *,
.mw-avatar *::before,
.mw-avatar *::after {
  box-sizing: border-box;
}

.mw-component-container {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #5B6770;
  line-height: 1.5;
}

.mw-component-container h1, .mw-component-container h2, .mw-component-container h3, .mw-component-container h4, .mw-component-container h5, .mw-component-container h6,
.mw-data-grid h1,
.mw-data-grid h2,
.mw-data-grid h3,
.mw-data-grid h4,
.mw-data-grid h5,
.mw-data-grid h6,
.mw-dialog h1,
.mw-dialog h2,
.mw-dialog h3,
.mw-dialog h4,
.mw-dialog h5,
.mw-dialog h6,
.mw-tabs h1,
.mw-tabs h2,
.mw-tabs h3,
.mw-tabs h4,
.mw-tabs h5,
.mw-tabs h6 {
  font-family: "Gotham", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #5B6770;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.mw-heading {
  font-family: "Gotham", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #5B6770;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

h1, .mw-h1 {
  font-size: 2rem;
  font-weight: 700;
}

h2, .mw-h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

h3, .mw-h3 {
  font-size: 1.25rem;
  font-weight: 500;
}

h4, .mw-h4 {
  font-size: 1.125rem;
  font-weight: 500;
}

h5, .mw-h5 {
  font-size: 1rem;
  font-weight: 500;
}

h6, .mw-h6 {
  font-size: 0.875rem;
  font-weight: 500;
}

.mw-text-body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
}

.mw-text-brand {
  font-family: "Gotham", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.mw-text-center {
  text-align: center;
}

.mw-text-left {
  text-align: left;
}

.mw-text-right {
  text-align: right;
}

.mw-mb-0 {
  margin-bottom: 0;
}

.mw-mb-1 {
  margin-bottom: 0.25rem;
}

.mw-mb-2 {
  margin-bottom: 0.5rem;
}

.mw-mb-3 {
  margin-bottom: 0.5rem;
}

.mw-mb-4 {
  margin-bottom: 1rem;
}

.mw-mb-5 {
  margin-bottom: 1.25rem;
}

.mw-mt-0 {
  margin-top: 0;
}

.mw-mt-1 {
  margin-top: 0.25rem;
}

.mw-mt-2 {
  margin-top: 0.5rem;
}

.mw-mt-3 {
  margin-top: 0.5rem;
}

.mw-mt-4 {
  margin-top: 1rem;
}

.mw-mt-5 {
  margin-top: 1.25rem;
}

.mw-p-0 {
  padding: 0;
}

.mw-p-1 {
  padding: 0.25rem;
}

.mw-p-2 {
  padding: 0.5rem;
}

.mw-p-3 {
  padding: 0.5rem;
}

.mw-p-4 {
  padding: 1rem;
}

.mw-p-5 {
  padding: 1.25rem;
}

/*# sourceMappingURL=mineware-components.css.map */
