/* EduVendor NG */
:root { --primary: #059669; --secondary: #0d9488; --accent: #f59e0b; }
body.eduvendor-body { font-family: 'Inter', sans-serif; background: #f8fafc; color: #1e293b; }
.hover-card { transition: transform .2s, box-shadow .2s; }
.hover-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,.1) !important; }


/* ============================================================
   EDUVENDOR UNIFIED DASHBOARD SHELL LAYOUT
   Added to support sidebar + topbar across all vendor pages
   ============================================================ */

.evd-shell {
  display: flex;
  height: 100vh;
  overflow: hidden;
  background: var(--ev-bg);
}

.evd-shell-sidebar {
  flex-shrink: 0;
  height: 100vh;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.evd-shell-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.evd-shell-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem;
  background: var(--ev-bg);
}

.evd-shell-footer {
  flex-shrink: 0;
  height: 48px;
  background: var(--ev-card-bg);
  border-top: 1px solid var(--ev-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--ev-text-muted);
}

@media (max-width: 991.98px) {
  .evd-shell {
    height: auto;
    min-height: calc(100vh - var(--ev-header-height));
    padding-bottom: 64px;
  }
  .evd-shell-content {
    padding: 1rem;
  }
  .evd-shell-footer {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .evd-shell-sidebar {
    width: var(--ev-sidebar-expanded);
  }
  .evd-shell-sidebar.evd-collapsed {
    width: var(--ev-sidebar-collapsed);
  }
}

