.bg-primary-soft {
  background-color: rgba(0, 102, 255, 0.1);
}

.extra-small {
  font-size: 0.75rem;
}

.transition-all {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.app-body {
  background-color: #f8fafc;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1a1d21;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.app-container {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.app-container.auth-page .app-content {
  background: radial-gradient(circle at top right, rgba(0, 102, 255, 0.05), transparent), radial-gradient(circle at bottom left, rgba(76, 175, 80, 0.05), transparent);
}
.app-container.auth-page .app-main-view {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.app-container .app-sidebar {
  width: 260px;
  background-color: #1a1d21;
  color: #ffffff;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  z-index: 10;
}
.app-container .app-sidebar .logo-area {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.5px;
}
.app-container .app-sidebar .logo-area .zen {
  color: #0066ff;
}
.app-container .app-sidebar .logo-area .work {
  color: #4caf50;
}
.app-container .app-sidebar .nav-link {
  color: rgba(255, 255, 255, 0.6);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 0.4rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  text-decoration: none;
}
.app-container .app-sidebar .nav-link i {
  font-size: 1.2rem;
  margin-right: 12px;
}
.app-container .app-sidebar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #4caf50;
}
.app-container .app-sidebar .nav-link.active {
  background-color: #0066ff;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}
.app-container .app-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.app-container .app-content .app-header {
  height: 70px;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
  flex-shrink: 0;
}
.app-container .app-content .app-main-view {
  flex-grow: 1;
  overflow-y: auto;
  padding: 2rem;
}
.app-container .app-content .app-main-view .zen-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.5rem;
  width: 100%;
}
.app-container .app-content .app-main-view .zen-card.max-450 {
  max-width: 450px;
}
.app-container .app-content .app-main-view .zen-card.p-0 {
  padding: 0;
  overflow: hidden;
}

.table {
  border-collapse: separate;
  border-spacing: 0;
}
.table thead th {
  background-color: #fcfcfd;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e2e8f0;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #64748b;
  padding: 1rem;
}
.table tbody tr {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.table tbody tr:hover {
  background-color: rgba(0, 102, 255, 0.01) !important;
  cursor: pointer;
}
.table tbody tr td {
  padding: 1rem;
}

.avatar-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-zen {
  background: linear-gradient(135deg, #0066ff, rgb(0, 91.8, 229.5));
  color: #ffffff;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  border: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-zen:hover {
  background: linear-gradient(135deg, rgb(25.5, 117.3, 255), #0066ff);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}
.btn-zen:active {
  transform: translateY(0);
}

.btn-white, .btn-light {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #1a1d21;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-white:hover, .btn-light:hover {
  background: #f8fafc;
  border-color: rgb(192.3863636364, 205.3409090909, 222.6136363636);
  color: #0066ff;
}

.dropdown-menu {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.dropdown-menu .dropdown-item {
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-menu .dropdown-item:hover {
  background-color: rgba(0, 102, 255, 0.1);
  color: #0066ff;
}

.error-container {
  text-align: center;
}
.error-container .error-code {
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #0066ff, #4caf50);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  filter: drop-shadow(0 5px 10px rgba(0, 102, 255, 0.1));
}
.error-container h1 {
  color: #1a1d21;
  font-weight: 800;
  margin-bottom: 1rem;
}

.bg-success-soft {
  background-color: rgba(76, 175, 80, 0.1);
}

.text-success {
  color: #4caf50 !important;
}

.avatar-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rounded-3 {
  border-radius: 12px !important;
}

.zen-card.bg-dark {
  background-color: #1a1d21 !important;
}
.zen-card.bg-dark .btn-zen {
  background: #ffffff;
  color: #1a1d21;
}
.zen-card.bg-dark .btn-zen:hover {
  background: #f8fafc;
  transform: scale(1.02);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
  display: block;
  opacity: 1;
}

@media (max-width: 992px) {
  .app-sidebar {
    z-index: 1000 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    height: 100vh !important;
    width: 260px !important;
    transition: transform 0.3s ease-in-out !important;
    transform: translateX(-100%);
    overflow-y: auto;
  }
  .app-sidebar.show {
    transform: translateX(0) !important;
  }
  .app-header {
    padding: 0 1rem !important;
  }
  .app-header .page-title {
    display: none;
  }
  .app-main-view {
    padding: 1rem !important;
  }
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
  }
  .sidebar-overlay.show {
    display: block;
  }
}/*# sourceMappingURL=main.css.map */