/* [project]/src/components/ui/Modal.module.css [app-client] (css) */
.Modal-module__7LRQSW__overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1000;
  background: #0f172a99;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: .2s ease-out Modal-module__7LRQSW__fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes Modal-module__7LRQSW__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.Modal-module__7LRQSW__modal {
  background: #fff;
  border-radius: 16px;
  flex-direction: column;
  width: 100%;
  max-height: 90vh;
  animation: .2s ease-out Modal-module__7LRQSW__slideIn;
  display: flex;
}

@keyframes Modal-module__7LRQSW__slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px)scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.Modal-module__7LRQSW__sm {
  max-width: 400px;
}

.Modal-module__7LRQSW__md {
  max-width: 500px;
}

.Modal-module__7LRQSW__lg {
  max-width: 700px;
}

.Modal-module__7LRQSW__xl {
  max-width: 900px;
}

.Modal-module__7LRQSW__header {
  border-bottom: 1px solid var(--gray-200);
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  display: flex;
}

.Modal-module__7LRQSW__title {
  color: var(--gray-900);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.Modal-module__7LRQSW__closeButton {
  width: 36px;
  height: 36px;
  color: var(--gray-500);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.Modal-module__7LRQSW__closeButton:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.Modal-module__7LRQSW__body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

.Modal-module__7LRQSW__footer {
  border-top: 1px solid var(--gray-200);
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  display: flex;
}

@media (max-width: 600px) {
  .Modal-module__7LRQSW__overlay {
    padding: 12px;
  }

  .Modal-module__7LRQSW__modal {
    max-height: 95vh;
  }

  .Modal-module__7LRQSW__header {
    padding: 16px 20px;
  }

  .Modal-module__7LRQSW__body {
    padding: 20px;
  }

  .Modal-module__7LRQSW__footer {
    padding: 12px 20px;
  }
}

/* [project]/src/components/ui/Toast.module.css [app-client] (css) */
.Toast-module__dpyMdW__container {
  z-index: 9999;
  pointer-events: none;
  flex-direction: column;
  gap: 10px;
  display: flex;
  position: fixed;
  top: 20px;
  right: 20px;
}

.Toast-module__dpyMdW__toast {
  pointer-events: auto;
  background: #fff;
  border-left: 4px solid;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  min-width: 320px;
  max-width: 420px;
  padding: 14px 16px;
  animation: .3s ease-out Toast-module__dpyMdW__slideIn;
  display: flex;
  box-shadow: 0 4px 20px #1017271a;
}

@keyframes Toast-module__dpyMdW__slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.Toast-module__dpyMdW__exiting {
  animation: .2s ease-in forwards Toast-module__dpyMdW__slideOut;
}

@keyframes Toast-module__dpyMdW__slideOut {
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.Toast-module__dpyMdW__success {
  border-color: var(--success);
}

.Toast-module__dpyMdW__success .Toast-module__dpyMdW__icon {
  color: var(--success);
}

.Toast-module__dpyMdW__error {
  border-color: var(--error);
}

.Toast-module__dpyMdW__error .Toast-module__dpyMdW__icon {
  color: var(--error);
}

.Toast-module__dpyMdW__warning {
  border-color: var(--warning);
}

.Toast-module__dpyMdW__warning .Toast-module__dpyMdW__icon {
  color: var(--warning);
}

.Toast-module__dpyMdW__info {
  border-color: var(--info);
}

.Toast-module__dpyMdW__info .Toast-module__dpyMdW__icon {
  color: var(--info);
}

.Toast-module__dpyMdW__icon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.Toast-module__dpyMdW__message {
  color: var(--gray-700);
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.Toast-module__dpyMdW__closeBtn {
  width: 28px;
  height: 28px;
  color: var(--gray-400);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.Toast-module__dpyMdW__closeBtn:hover {
  background: var(--gray-100);
  color: var(--gray-600);
}

@media (max-width: 480px) {
  .Toast-module__dpyMdW__container {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .Toast-module__dpyMdW__toast {
    min-width: auto;
    max-width: none;
  }
}

/* [project]/src/components/ui/Select/Select.module.css [app-client] (css) */
.Select-module__BWx2JW__container {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.Select-module__BWx2JW__label {
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 500;
}

.Select-module__BWx2JW__select {
  width: 100%;
  position: relative;
}

.Select-module__BWx2JW__trigger {
  border: 1px solid var(--gray-200);
  width: 100%;
  color: var(--gray-700);
  cursor: pointer;
  text-align: left;
  background: #fff;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  height: 46px;
  padding: 10px 14px;
  font-size: 14px;
  transition: all .2s;
  display: flex;
}

.Select-module__BWx2JW__trigger:hover:not(:disabled) {
  border-color: var(--gray-300);
}

.Select-module__BWx2JW__trigger:focus {
  border-color: var(--primary);
  outline: none;
}

.Select-module__BWx2JW__trigger.Select-module__BWx2JW__open {
  border-color: var(--primary);
}

.Select-module__BWx2JW__trigger:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.Select-module__BWx2JW__trigger.Select-module__BWx2JW__error {
  border-color: var(--error);
}

.Select-module__BWx2JW__selectedValue {
  color: var(--gray-900);
  font-weight: 500;
}

.Select-module__BWx2JW__placeholder {
  color: var(--gray-400);
}

.Select-module__BWx2JW__chevron {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform .2s;
}

.Select-module__BWx2JW__chevron.Select-module__BWx2JW__rotated {
  transform: rotate(180deg);
}

.Select-module__BWx2JW__disabled {
  opacity: .6;
  cursor: not-allowed;
}

.Select-module__BWx2JW__dropdown {
  border: 1px solid var(--gray-200);
  z-index: 1000;
  background: #fff;
  border-radius: 12px;
  animation: .2s cubic-bezier(.16, 1, .3, 1) Select-module__BWx2JW__dropdownIn;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  overflow: hidden;
  box-shadow: 0 10px 40px -10px #10172726;
}

.Select-module__BWx2JW__dropdown.Select-module__BWx2JW__dropUp {
  animation: .2s cubic-bezier(.16, 1, .3, 1) Select-module__BWx2JW__dropUpIn;
  top: auto;
  bottom: calc(100% + 4px);
}

@keyframes Select-module__BWx2JW__dropdownIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes Select-module__BWx2JW__dropUpIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.Select-module__BWx2JW__searchWrapper {
  border-bottom: 1px solid var(--gray-200);
  padding: 8px;
}

.Select-module__BWx2JW__search {
  border: 1px solid var(--gray-200);
  width: 100%;
  color: var(--gray-700);
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  transition: all .2s;
}

.Select-module__BWx2JW__search:focus {
  border-color: var(--primary);
  outline: none;
}

.Select-module__BWx2JW__options {
  max-height: 240px;
  padding: 4px;
  overflow-y: auto;
}

.Select-module__BWx2JW__options::-webkit-scrollbar {
  width: 6px;
}

.Select-module__BWx2JW__options::-webkit-scrollbar-track {
  background: none;
}

.Select-module__BWx2JW__options::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}

.Select-module__BWx2JW__options::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

.Select-module__BWx2JW__option {
  width: 100%;
  color: var(--gray-700);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 14px;
  transition: all .15s;
  display: flex;
}

.Select-module__BWx2JW__option:hover {
  background: var(--gray-50);
  color: var(--gray-900);
}

.Select-module__BWx2JW__option.Select-module__BWx2JW__selected {
  color: var(--primary);
  background: #28a54514;
  font-weight: 500;
}

.Select-module__BWx2JW__option svg {
  color: var(--primary);
  flex-shrink: 0;
}

.Select-module__BWx2JW__noResults {
  text-align: center;
  color: var(--gray-500);
  padding: 20px;
  font-size: 14px;
}

.Select-module__BWx2JW__errorText {
  color: var(--error);
  font-size: 12px;
}

@media (max-width: 600px) {
  .Select-module__BWx2JW__dropdown {
    border-radius: 20px 20px 0 0;
    max-height: 70vh;
    position: fixed;
    inset: auto 0 0;
  }

  .Select-module__BWx2JW__options {
    max-height: calc(70vh - 60px);
  }
}

/* [project]/src/components/layout/Sidebar.module.css [app-client] (css) */
.Sidebar-module__XRNO5a__sidebar {
  width: var(--sidebar-width);
  background: var(--gray-900);
  z-index: 100;
  flex-direction: column;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.Sidebar-module__XRNO5a__logoSection {
  border-bottom: 1px solid #ffffff14;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  display: flex;
}

.Sidebar-module__XRNO5a__logo {
  transition: opacity .2s var(--ease-out-expo);
  align-items: center;
  gap: 12px;
  display: flex;
}

.Sidebar-module__XRNO5a__logo:hover {
  opacity: .8;
}

.Sidebar-module__XRNO5a__logoIcon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
}

.Sidebar-module__XRNO5a__logoText {
  flex-direction: column;
  line-height: 1.1;
  display: flex;
}

.Sidebar-module__XRNO5a__logoPrimary {
  color: #fff;
  letter-spacing: -.02em;
  font-size: 16px;
  font-weight: 700;
}

.Sidebar-module__XRNO5a__logoAccent {
  color: var(--primary);
  letter-spacing: -.02em;
  font-size: 16px;
  font-weight: 700;
}

.Sidebar-module__XRNO5a__badge {
  color: #fff;
  background: var(--primary);
  letter-spacing: .5px;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
}

.Sidebar-module__XRNO5a__navSection {
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 12px 10px;
  overflow-y: auto;
}

.Sidebar-module__XRNO5a__navSection::-webkit-scrollbar {
  display: none;
}

.Sidebar-module__XRNO5a__navGroup {
  margin-bottom: 16px;
}

.Sidebar-module__XRNO5a__navGroup:first-child {
  margin-bottom: 8px;
}

.Sidebar-module__XRNO5a__navLabel {
  color: #fff6;
  letter-spacing: .1em;
  margin-bottom: 8px;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 600;
}

.Sidebar-module__XRNO5a__nav {
  flex-direction: column;
  gap: 1px;
  display: flex;
}

.Sidebar-module__XRNO5a__navItem {
  color: #fff9;
  transition: all .2s var(--ease-out-expo);
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Sidebar-module__XRNO5a__navItem:before {
  content: "";
  opacity: 0;
  transition: opacity .3s var(--ease-out-expo);
  background: linear-gradient(90deg, #28a54533 0%, #0000 100%);
  position: absolute;
  inset: 0;
}

.Sidebar-module__XRNO5a__navItem:hover {
  color: #fff;
  background: #ffffff0d;
}

.Sidebar-module__XRNO5a__navItem.Sidebar-module__XRNO5a__active {
  color: var(--primary);
  background: #28a54526;
}

.Sidebar-module__XRNO5a__navItem.Sidebar-module__XRNO5a__active:before {
  opacity: .15;
}

.Sidebar-module__XRNO5a__navIcon {
  width: 28px;
  height: 28px;
  transition: all .2s var(--ease-out-expo);
  background: #ffffff14;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.Sidebar-module__XRNO5a__navItem:hover .Sidebar-module__XRNO5a__navIcon {
  background: #ffffff1f;
}

.Sidebar-module__XRNO5a__navItem.Sidebar-module__XRNO5a__active .Sidebar-module__XRNO5a__navIcon {
  color: var(--primary);
  background: #28a54533;
}

.Sidebar-module__XRNO5a__navText {
  z-index: 1;
  flex: 1;
  position: relative;
}

.Sidebar-module__XRNO5a__navBadge {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  letter-spacing: .05em;
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 9px;
  font-weight: 700;
}

.Sidebar-module__XRNO5a__activeIndicator {
  background: var(--primary);
  width: 3px;
  height: 20px;
  animation: Sidebar-module__XRNO5a__scaleIn .2s var(--ease-out-back);
  border-radius: 3px 0 0 3px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.Sidebar-module__XRNO5a__menuGroup {
  margin: 4px 0;
}

.Sidebar-module__XRNO5a__menuHeader {
  color: #fff9;
  cursor: pointer;
  width: 100%;
  transition: all .2s var(--ease-out-expo);
  text-align: left;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.Sidebar-module__XRNO5a__menuHeader:hover {
  color: #fff;
  background: #ffffff0d;
}

.Sidebar-module__XRNO5a__menuHeader.Sidebar-module__XRNO5a__open {
  color: #fff;
}

.Sidebar-module__XRNO5a__menuHeader.Sidebar-module__XRNO5a__active {
  color: var(--primary);
}

.Sidebar-module__XRNO5a__menuHeader.Sidebar-module__XRNO5a__active .Sidebar-module__XRNO5a__navIcon {
  color: var(--primary);
  background: #28a54533;
}

.Sidebar-module__XRNO5a__chevron {
  transition: transform .3s var(--ease-out-expo);
  color: #fff6;
  margin-left: auto;
}

.Sidebar-module__XRNO5a__menuHeader.Sidebar-module__XRNO5a__open .Sidebar-module__XRNO5a__chevron {
  color: var(--primary);
  transform: rotate(90deg);
}

.Sidebar-module__XRNO5a__subMenu {
  max-height: 0;
  transition: max-height .3s var(--ease-out-expo), opacity .2s;
  opacity: 0;
  border-left: 1px solid #ffffff1a;
  margin-left: 44px;
  overflow: hidden;
}

.Sidebar-module__XRNO5a__subMenu.Sidebar-module__XRNO5a__open {
  opacity: 1;
  max-height: 400px;
  padding: 8px 0 8px 12px;
}

.Sidebar-module__XRNO5a__subMenuItem {
  color: #ffffff80;
  transition: all .2s var(--ease-out-expo);
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.Sidebar-module__XRNO5a__subMenuItem:hover {
  color: #fff;
  background: #ffffff0d;
}

.Sidebar-module__XRNO5a__subMenuItem.Sidebar-module__XRNO5a__active {
  color: var(--primary);
  background: #28a54526;
}

.Sidebar-module__XRNO5a__footer {
  border-top: 1px solid #ffffff14;
  align-items: center;
  gap: 12px;
  padding: 16px;
  display: flex;
}

.Sidebar-module__XRNO5a__userCard {
  flex: 1;
  align-items: center;
  gap: 12px;
  display: flex;
}

.Sidebar-module__XRNO5a__avatar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.Sidebar-module__XRNO5a__userInfo {
  flex-direction: column;
  display: flex;
}

.Sidebar-module__XRNO5a__userName {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.Sidebar-module__XRNO5a__userRole {
  color: #ffffff80;
  font-size: 12px;
}

.Sidebar-module__XRNO5a__logoutBtn {
  color: #fff9;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: all .2s var(--ease-out-expo);
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.Sidebar-module__XRNO5a__logoutBtn:hover {
  color: var(--error);
  background: #ef44441a;
  border-color: #ef44444d;
}

.Sidebar-module__XRNO5a__mobileToggle {
  z-index: 200;
  background: var(--gray-900);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
}

.Sidebar-module__XRNO5a__mobileOverlay, .Sidebar-module__XRNO5a__mobileSidebar {
  display: none;
}

@media (max-width: 968px) {
  .Sidebar-module__XRNO5a__sidebar {
    display: none;
  }

  .Sidebar-module__XRNO5a__mobileToggle {
    display: flex;
  }

  .Sidebar-module__XRNO5a__mobileOverlay {
    z-index: 150;
    background: #10172780;
    animation: .2s ease-out Sidebar-module__XRNO5a__fadeIn;
    display: block;
    position: fixed;
    inset: 0;
  }

  .Sidebar-module__XRNO5a__mobileSidebar {
    background: var(--gray-900);
    z-index: 200;
    flex-direction: column;
    width: 280px;
    height: 100vh;
    animation: .2s ease-out Sidebar-module__XRNO5a__slideIn;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
  }

  @keyframes Sidebar-module__XRNO5a__fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes Sidebar-module__XRNO5a__slideIn {
    from {
      transform: translateX(-100%);
    }

    to {
      transform: translateX(0);
    }
  }
}

/* [project]/src/app/(admin)/layout.module.css [app-client] (css) */
.layout-module__kk4I2W__layout {
  min-height: 100vh;
  display: flex;
}

.layout-module__kk4I2W__main {
  margin-left: var(--sidebar-width);
  background: var(--gray-100);
  flex: 1;
  min-height: 100vh;
}

.layout-module__kk4I2W__loading {
  background: var(--gray-100);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 100vh;
  display: flex;
}

.layout-module__kk4I2W__spinner {
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: .8s linear infinite layout-module__kk4I2W__spin;
}

@keyframes layout-module__kk4I2W__spin {
  to {
    transform: rotate(360deg);
  }
}

.layout-module__kk4I2W__loading p {
  color: var(--gray-500);
  font-size: 15px;
}

@media (max-width: 968px) {
  .layout-module__kk4I2W__main {
    margin-left: 0;
    padding-top: 76px;
  }
}

/*# sourceMappingURL=src_bc4683da._.css.map*/