/* Dashboard Preview Styles */
.hero-image-container {
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: 100%;
  max-width: 500px;
  height: 380px;
}

.dashboard-preview {
  width: 100%;
  height: 100%;
  min-height: 350px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  display: flex;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  border: 1px solid #e2e8f0;
}

.preview-sidebar {
  width: 60px;
  background: #fff;
  border-right: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

.preview-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.preview-icon.active {
  background: #e0e7ff;
  color: #4f46e5;
}

.preview-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}

.preview-header {
  height: 50px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.preview-search {
  width: 200px;
  height: 30px;
  background: #f1f5f9;
  border-radius: 6px;
}

.preview-profile {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #cbd5e1;
}

.preview-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.preview-welcome {
  height: 20px;
  width: 150px;
  background: #e2e8f0;
  border-radius: 4px;
}

.preview-stats-row {
  display: flex;
  gap: 16px;
}

.preview-stat-card {
  flex: 1;
  height: 80px;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.preview-stat-value {
  width: 40px;
  height: 20px;
  background: #e2e8f0;
  border-radius: 4px;
}

.preview-stat-label {
  width: 80px;
  height: 12px;
  background: #f1f5f9;
  border-radius: 4px;
}

.preview-list {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.preview-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
}

.preview-text {
  flex: 1;
  height: 12px;
  background: #f1f5f9;
  border-radius: 4px;
}
