@import "https://fonts.googleapis.com/css2?family=Satoshi:wght@300;400;500;600;700;900&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --color-primary-25: #fffbf5;
  --color-primary-50: #fff7ed;
  --color-primary-100: #ffedd5;
  --color-primary-200: #fed7aa;
  --color-primary-300: #fdba74;
  --color-primary-400: #fb923c;
  --color-primary-500: #f97316;
  --color-primary-600: #ea580c;
  --color-primary-700: #c2410c;
  --color-primary-800: #9a3412;
  --color-primary-900: #7c2d12;
  --color-secondary-50: #fafaf9;
  --color-secondary-100: #f5f5f4;
  --color-secondary-200: #e7e5e4;
  --color-secondary-300: #d6d3d1;
  --color-secondary-400: #a8a29e;
  --color-secondary-500: #78716c;
  --color-secondary-600: #57534e;
  --color-secondary-700: #44403c;
  --color-secondary-800: #292524;
  --color-secondary-900: #1c1917;
  --color-success-50: #ecfdf5;
  --color-success-100: #d1fae5;
  --color-success-500: #10b981;
  --color-success-600: #059669;
  --color-success-700: #047857;
  --color-error-50: #fef2f2;
  --color-error-100: #fee2e2;
  --color-error-500: #ef4444;
  --color-error-600: #dc2626;
  --color-error-700: #b91c1c;
  --color-warning-50: #fffbeb;
  --color-warning-100: #fef3c7;
  --color-warning-500: #f59e0b;
  --color-warning-600: #d97706;
  --color-warning-700: #b45309;
  --color-neutral-50: #fafafa;
  --color-neutral-100: #f5f5f5;
  --color-neutral-200: #e5e5e5;
  --color-neutral-300: #d4d4d4;
  --color-neutral-400: #a3a3a3;
  --color-neutral-500: #737373;
  --color-neutral-600: #525252;
  --color-neutral-700: #404040;
  --color-neutral-800: #262626;
  --color-neutral-900: #171717;
  --gradient-primary: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-600));
  --gradient-primary-light: linear-gradient(135deg, var(--color-primary-50), var(--color-primary-100));
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary-100), var(--color-secondary-200));
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, .05), 0 2px 4px rgba(0, 0, 0, .04);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, .08), 0 4px 6px rgba(0, 0, 0, .05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, .1), 0 10px 10px rgba(0, 0, 0, .04);
  --shadow-primary: 0 4px 12px rgba(249, 115, 22, .25);
  --shadow-primary-hover: 0 6px 20px rgba(249, 115, 22, .35);
  --shadow-subtle: var(--shadow-sm);
  --shadow-medium: var(--shadow-md);
  --shadow-large: var(--shadow-lg);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100vw;
  font-family: Satoshi, sans-serif;
}

body {
  color: #1c1917;
  background: #fafafa;
}

a {
  color: inherit;
  text-decoration: none;
}

.btn {
  cursor: pointer;
  letter-spacing: .025em;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-family: Satoshi, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
}

.btn-primary {
  color: #fff;
  box-shadow: var(--shadow-primary);
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.btn-primary:hover {
  box-shadow: var(--shadow-primary-hover);
  background: linear-gradient(135deg, #ea580c, #c2410c);
  transform: translateY(-1px);
}

.btn-primary:active {
  box-shadow: var(--shadow-primary);
  transform: translateY(0);
}

.btn-secondary {
  color: #f97316;
  box-shadow: var(--shadow-xs);
  background: #fff;
  border: 2px solid #f97316;
}

.btn-secondary:hover {
  color: #fff;
  box-shadow: var(--shadow-sm);
  background: #f97316;
  transform: translateY(-1px);
}

.btn-secondary:active {
  box-shadow: var(--shadow-xs);
  transform: translateY(0);
}

.btn-outline {
  color: #525252;
  background: none;
  border: 2px solid #e5e5e5;
}

.btn-outline:hover {
  box-shadow: var(--shadow-xs);
  background: #f5f5f5;
  border-color: #d4d4d4;
  transform: translateY(-1px);
}

.btn-outline:active {
  box-shadow: none;
  transform: translateY(0);
}

.btn-sm {
  padding: .5rem 1rem;
  font-size: .75rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.card {
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-neutral-200);
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-neutral-300);
  transform: translateY(-2px);
}

.card-header {
  margin-bottom: 1rem;
}

.card-title {
  color: #1c1917;
  margin-bottom: .5rem;
  font-family: Satoshi, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.card-description {
  color: #78716c;
  font-family: Satoshi, sans-serif;
  line-height: 1.6;
}

.text-display-xl {
  color: #1c1917;
  font-family: Satoshi, sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
}

.text-display-lg {
  color: #1c1917;
  font-family: Satoshi, sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.1;
}

.text-heading-xl {
  color: #1c1917;
  font-family: Satoshi, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-heading-lg {
  color: #1c1917;
  font-family: Satoshi, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-heading-md {
  color: #1c1917;
  font-family: Satoshi, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.text-heading-sm {
  color: #1c1917;
  font-family: Satoshi, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.text-body-lg {
  color: #44403c;
  font-family: Satoshi, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

.text-body-md {
  color: #44403c;
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.text-body-sm {
  color: #44403c;
  font-family: Satoshi, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.text-orange-500 {
  color: #f97316;
}

.text-orange-600 {
  color: #ea580c;
}

.text-orange-700 {
  color: #c2410c;
}

.text-blue-500 {
  color: #3b82f6;
}

.text-blue-600 {
  color: #2563eb;
}

.text-neutral-400 {
  color: #a3a3a3;
}

.text-neutral-600 {
  color: #525252;
}

.text-neutral-800 {
  color: #262626;
}

.bg-orange-50 {
  background-color: #fff7ed;
}

.bg-orange-100 {
  background-color: #ffedd5;
}

.bg-orange-500 {
  background-color: #f97316;
}

.bg-orange-600 {
  background-color: #ea580c;
}

.bg-blue-50 {
  background-color: #eff6ff;
}

.bg-blue-500 {
  background-color: #3b82f6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: .25rem;
}

.gap-2 {
  gap: .5rem;
}

.gap-3 {
  gap: .75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.p-1 {
  padding: .25rem;
}

.p-2 {
  padding: .5rem;
}

.p-3 {
  padding: .75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.m-1 {
  margin: .25rem;
}

.m-2 {
  margin: .5rem;
}

.m-3 {
  margin: .75rem;
}

.m-4 {
  margin: 1rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-8 {
  margin: 2rem;
}

.mb-1 {
  margin-bottom: .25rem;
}

.mb-2 {
  margin-bottom: .5rem;
}

.mb-3 {
  margin-bottom: .75rem;
}

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

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: .25rem;
}

.mt-2 {
  margin-top: .5rem;
}

.mt-3 {
  margin-top: .75rem;
}

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

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.rounded {
  border-radius: .25rem;
}

.rounded-md {
  border-radius: .375rem;
}

.rounded-lg {
  border-radius: .5rem;
}

.rounded-xl {
  border-radius: .75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}

.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
}

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

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

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

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.form-input {
  background: #fafafa;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  outline: none;
  width: 100%;
  padding: .75rem 1rem;
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  transition: all .3s;
}

.form-input:focus {
  background: #fff;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .1);
}

.form-label {
  color: #1c1917;
  margin-bottom: .5rem;
  font-family: Satoshi, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  display: block;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .text-display-xl {
    font-size: 3rem;
  }

  .text-display-lg {
    font-size: 2.5rem;
  }

  .text-heading-xl {
    font-size: 2rem;
  }

  .text-heading-lg {
    font-size: 1.75rem;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* [project]/src/components/ui/Sidebar.css [app-client] (css) */
.sidebar {
  z-index: 1000;
  background: linear-gradient(#fff 0%, #fafafa 100%);
  border-right: 1px solid #e5e5e5;
  flex-direction: column;
  width: 260px;
  height: 100vh;
  transition: width .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 2px 0 8px rgba(0, 0, 0, .04);
}

.sidebar.collapsed {
  width: 72px;
}

.sidebar-header {
  border-bottom: 1px solid #f5f5f4;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 1.5rem 1rem;
  display: flex;
}

.sidebar-logo {
  flex: 1;
  align-items: center;
  gap: .75rem;
  display: flex;
  overflow: hidden;
}

.logo-icon {
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  display: flex;
  box-shadow: 0 4px 12px rgba(249, 115, 22, .3);
}

.logo-icon svg {
  width: 20px;
  height: 20px;
}

.logo-text {
  color: #1c1917;
  white-space: nowrap;
  letter-spacing: -.02em;
  font-family: Satoshi, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.sidebar-toggle {
  cursor: pointer;
  color: #78716c;
  background: none;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  transition: all .2s;
  display: flex;
}

.sidebar-toggle:hover {
  color: #f97316;
  background: #fff7ed;
}

.sidebar-toggle svg {
  width: 18px;
  height: 18px;
}

.sidebar-nav {
  flex: 1;
  padding: 1rem 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.sidebar-nav::-webkit-scrollbar {
  width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
  background: none;
}

.sidebar-nav::-webkit-scrollbar-thumb {
  background: #e5e5e5;
  border-radius: 4px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
  background: #d4d4d4;
}

.sidebar-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  margin: .25rem 0;
}

.menu-link {
  color: #44403c;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: .75rem;
  width: calc(100% - 1rem);
  margin: 0 .5rem;
  padding: .75rem 1rem;
  font-family: Satoshi, sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
  position: relative;
}

.menu-link:hover {
  color: #f97316;
  background: #fff7ed;
}

.menu-link.active {
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 4px 12px rgba(249, 115, 22, .3);
}

.menu-link.active .menu-icon {
  color: #fff;
}

.menu-icon {
  color: #78716c;
  justify-content: center;
  align-items: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  transition: color .2s;
  display: flex;
}

.menu-link:hover .menu-icon, .menu-link.active .menu-icon {
  color: inherit;
}

.menu-icon svg {
  width: 20px;
  height: 20px;
}

.menu-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  overflow: hidden;
}

.menu-parent {
  position: relative;
}

.menu-arrow {
  justify-content: center;
  align-items: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
  transition: transform .2s;
  display: flex;
}

.menu-arrow svg {
  width: 16px;
  height: 16px;
}

.menu-parent.expanded .menu-arrow {
  transform: rotate(180deg);
}

.submenu {
  margin: 0;
  padding: .25rem 0 .5rem;
  list-style: none;
  animation: .2s slideDown;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

.submenu-item {
  margin: .125rem 0;
}

.submenu-link {
  color: #57534e;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: .75rem;
  width: calc(100% - 1rem);
  margin: 0 .5rem;
  padding: .625rem 1rem .625rem 3rem;
  font-family: Satoshi, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  transition: all .2s;
  display: flex;
  position: relative;
}

.submenu-link:hover {
  color: #f97316;
  background: #fff7ed;
}

.submenu-link.active {
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(249, 115, 22, .25);
}

.submenu-dot {
  background: #d6d3d1;
  border-radius: 50%;
  width: 6px;
  min-width: 6px;
  height: 6px;
  transition: all .2s;
}

.submenu-link:hover .submenu-dot {
  background: #f97316;
  transform: scale(1.3);
}

.submenu-link.active .submenu-dot {
  background: #fff;
  transform: scale(1.5);
}

.submenu-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  overflow: hidden;
}

.sidebar-footer {
  border-top: 1px solid #f5f5f4;
  margin-top: auto;
  padding: 1rem 0;
}

.sidebar-divider {
  background: #f5f5f4;
  height: 1px;
  margin: 0 1rem 1rem;
}

.footer-item {
  color: #44403c;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: .75rem;
  width: calc(100% - 1rem);
  margin: .25rem .5rem;
  padding: .75rem 1rem;
  font-family: Satoshi, sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.footer-item:hover {
  color: #f97316;
  background: #fff7ed;
}

.footer-icon {
  color: #78716c;
  justify-content: center;
  align-items: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  transition: color .2s;
  display: flex;
}

.footer-item:hover .footer-icon {
  color: #f97316;
}

.footer-icon svg {
  width: 20px;
  height: 20px;
}

.footer-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  overflow: hidden;
}

.profile-item {
  cursor: default;
}

.profile-item:hover {
  background: #fff7ed;
}

.profile-info {
  flex-direction: column;
  flex: 1;
  gap: .125rem;
  display: flex;
  overflow: hidden;
}

.profile-name {
  color: #1c1917;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .875rem;
  font-weight: 600;
  overflow: hidden;
}

.profile-email {
  color: #78716c;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .75rem;
  font-weight: 400;
  overflow: hidden;
}

.logout-item:hover {
  color: #dc2626;
  background: #fef2f2;
}

.logout-item:hover .footer-icon {
  color: #dc2626;
}

.sidebar.collapsed .sidebar-header {
  justify-content: center;
  padding: 1.5rem .5rem;
}

.sidebar.collapsed .sidebar-logo {
  display: none;
}

.sidebar.collapsed .sidebar-toggle {
  margin-left: auto;
  margin-right: auto;
}

.sidebar.collapsed .menu-link, .sidebar.collapsed .footer-item {
  justify-content: center;
  padding: .75rem;
}

.sidebar.collapsed .menu-icon, .sidebar.collapsed .footer-icon {
  margin: 0;
}

.sidebar.collapsed .menu-link, .sidebar.collapsed .footer-item {
  position: relative;
}

.sidebar.collapsed .menu-link:after, .sidebar.collapsed .footer-item:after {
  content: attr(title);
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
  background: #1c1917;
  border-radius: 6px;
  padding: .5rem .75rem;
  font-size: .8125rem;
  font-weight: 500;
  transition: opacity .2s;
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  transform: translateY(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.sidebar.collapsed .menu-link:hover:after, .sidebar.collapsed .footer-item:hover:after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.collapsed {
    width: 72px;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    max-width: 260px;
  }

  .sidebar.collapsed {
    width: 0;
    overflow: hidden;
  }
}

@media print {
  .sidebar {
    display: none;
  }
}

/* [project]/src/components/ui/TopNavbar.css [app-client] (css) */
.top-navbar {
  z-index: 999;
  background: linear-gradient(#fff 0%, #fafafa 100%);
  border-bottom: 1px solid #e5e5e5;
  align-items: center;
  height: 70px;
  transition: left .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: fixed;
  top: 0;
  left: 260px;
  right: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.sidebar.collapsed ~ .top-navbar, .app-layout .sidebar.collapsed ~ * .top-navbar {
  left: 72px;
}

.navbar-container {
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 0 2rem;
  display: flex;
}

.navbar-left {
  flex: 1;
  min-width: 0;
}

.page-title-section {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.page-title {
  color: #1c1917;
  margin: 0;
  font-family: Satoshi, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.breadcrumbs {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.breadcrumb-item {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.breadcrumb-link {
  color: #78716c;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: Satoshi, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
}

.breadcrumb-link:hover {
  color: #f97316;
}

.breadcrumb-text {
  color: #44403c;
  font-family: Satoshi, sans-serif;
  font-size: .875rem;
  font-weight: 500;
}

.breadcrumb-separator {
  color: #d6d3d1;
}

.navbar-right {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.navbar-time {
  color: #78716c;
  background: #fff7ed;
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-family: Satoshi, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

.navbar-time svg {
  color: #f97316;
}

.navbar-icon-btn {
  cursor: pointer;
  color: #78716c;
  background: none;
  border: none;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  display: flex;
  position: relative;
}

.navbar-icon-btn:hover {
  color: #f97316;
  background: #fff7ed;
}

.notification-badge {
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-family: Satoshi, sans-serif;
  font-size: .625rem;
  font-weight: 600;
  display: flex;
  position: absolute;
  top: 6px;
  right: 6px;
  box-shadow: 0 2px 4px rgba(249, 115, 22, .3);
}

.navbar-divider {
  background: #e5e5e5;
  width: 1px;
  height: 32px;
}

.navbar-profile {
  position: relative;
}

.profile-button {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: .75rem;
  padding: .5rem 1rem;
  transition: background .2s;
  display: flex;
}

.profile-button:hover {
  background: #fff7ed;
}

.profile-avatar {
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  box-shadow: 0 2px 8px rgba(249, 115, 22, .3);
}

.profile-info {
  flex-direction: column;
  align-items: flex-start;
  gap: .125rem;
  display: flex;
}

.profile-name {
  color: #1c1917;
  font-family: Satoshi, sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
}

.profile-role {
  color: #78716c;
  font-family: Satoshi, sans-serif;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1;
}

.profile-chevron {
  color: #78716c;
  transition: transform .2s;
}

.profile-button:hover .profile-chevron {
  transform: translateY(2px);
}

.profile-dropdown {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  min-width: 280px;
  padding: .75rem;
  animation: .2s dropdownSlide;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .1);
}

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

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

.dropdown-header {
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  display: flex;
}

.dropdown-avatar {
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  font-family: Satoshi, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  box-shadow: 0 4px 12px rgba(249, 115, 22, .3);
}

.dropdown-user-info {
  flex-direction: column;
  flex: 1;
  gap: .25rem;
  display: flex;
  overflow: hidden;
}

.dropdown-name {
  color: #1c1917;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  overflow: hidden;
}

.dropdown-email {
  color: #78716c;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: Satoshi, sans-serif;
  font-size: .8125rem;
  font-weight: 400;
  overflow: hidden;
}

.dropdown-divider {
  background: #f5f5f4;
  height: 1px;
  margin: .5rem 0;
}

.dropdown-item {
  cursor: pointer;
  color: #44403c;
  text-align: left;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .75rem;
  font-family: Satoshi, sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.dropdown-item:hover {
  color: #f97316;
  background: #fff7ed;
}

.dropdown-item svg {
  color: #78716c;
  transition: color .2s;
}

.dropdown-item:hover svg {
  color: #f97316;
}

.logout-dropdown-item:hover {
  color: #dc2626;
  background: #fef2f2;
}

.logout-dropdown-item:hover svg {
  color: #dc2626;
}

@media (max-width: 1024px) {
  .top-navbar {
    left: 72px;
  }

  .navbar-container {
    padding: 0 1.5rem;
  }

  .navbar-time {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-navbar {
    height: 60px;
    left: 0;
  }

  .navbar-container {
    gap: 1rem;
    padding: 0 1rem;
  }

  .page-title {
    font-size: 1.25rem;
  }

  .breadcrumbs, .profile-info {
    display: none;
  }

  .profile-button {
    padding: .5rem;
  }

  .navbar-divider {
    display: none;
  }
}

@media print {
  .top-navbar {
    display: none;
  }
}

/* [project]/src/components/ui/AppLayout.css [app-client] (css) */
.app-layout {
  background: #fafafa;
  min-height: 100vh;
  display: flex;
  overflow-x: hidden;
}

.app-main-content {
  flex: 1;
  min-height: calc(100vh - 70px);
  margin-top: 70px;
  margin-left: 260px;
  transition: margin-left .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: visible;
}

.sidebar.collapsed ~ .app-main-content {
  margin-left: 72px;
}

@media (max-width: 1024px) {
  .app-main-content {
    margin-left: 72px;
  }
}

@media (max-width: 768px) {
  .app-main-content {
    min-height: calc(100vh - 60px);
    margin-top: 60px;
    margin-left: 0;
  }
}

@media print {
  .app-main-content {
    margin-top: 0;
    margin-left: 0;
  }
}

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