/* Premium Business Startup Cost Calculator Stylesheet (Enterprise Light Theme) */

.scc-premium-wrapper {
  font-family: 'Outfit', sans-serif;
  background: #f8fafc;
  color: #334155;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  width: 100% !important;
  max-width: 100% !important;
  position: static !important;
  box-sizing: border-box !important;
  margin: 1.5rem 0 !important;
  border: 1px solid #e2e8f0;
}

/* Header Styling */
.scc-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.scc-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.scc-header-icon {
  font-size: 2.5rem;
  color: #0284c7; /* Sky Blue */
  animation: floatIcon 4s ease-in-out infinite;
}

.scc-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.scc-badge-fy {
  font-size: 0.9rem;
  font-weight: 700;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0284c7;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
}

.scc-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 800px;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}

/* Workspace Layout */
.scc-workspace-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

/* Forms & Columns Styling */
.scc-form-column {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.scc-dashboard-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Tab Navigation */
.scc-tab-nav {
  display: flex;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 2rem;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 2px;
}

.scc-tab-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.scc-tab-btn:hover {
  color: #0284c7;
}

.scc-tab-btn.active {
  color: #0284c7;
  border-bottom-color: #0284c7;
}

/* Tab Panels */
.scc-tab-panel {
  display: none;
}

.scc-tab-panel.active {
  display: block;
}

.scc-tab-panel h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.75rem;
}

.scc-panel-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Inputs styling overrides */
.scc-premium-wrapper input[type="text"],
.scc-premium-wrapper input[type="number"],
.scc-premium-wrapper select {
  width: 100% !important;
  background: #f8fafc !important;
  color: #0f172a !important;
  border: 1px solid #cbd5e1 !important;
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
}

.scc-premium-wrapper input[type="text"]:focus,
.scc-premium-wrapper input[type="number"]:focus,
.scc-premium-wrapper select:focus {
  border-color: #0284c7 !important;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.2) !important;
}

.scc-form-group {
  margin-bottom: 1.5rem;
}

.scc-form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
}

.scc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
}

/* Calculate Button */
.scc-btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.scc-btn-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
  transform: translateY(-1px);
}

/* Metric Cards Dashboard */
.scc-metric-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.scc-metric-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.scc-highlight-card {
  background: #f0f9ff;
  border-color: #bae6fd;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.08);
}

.scc-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
}

.scc-card-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.scc-highlight-card .scc-card-title {
  color: #0369a1;
}

.scc-highlight-card .scc-card-value {
  color: #0284c7;
}

/* Visualizations */
.scc-chart-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.scc-chart-container h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.scc-chart-container h3 i {
  color: #0284c7;
}

.scc-canvas-wrapper {
  position: relative;
  height: 220px;
  width: 100%;
}

/* Utilities Row */
.scc-utilities-row {
  display: flex;
  gap: 1rem;
}

.scc-utility-btn {
  flex: 1;
  background: #ffffff;
  border: 1px solid #bae6fd;
  color: #0284c7;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.scc-utility-btn:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  transform: translateY(-1px);
}

/* Keyframes */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Responsive breakdowns */
@media (max-width: 1150px) {
  .scc-workspace-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .scc-premium-wrapper {
    padding: 1.25rem 0.75rem !important;
    margin: 1rem auto !important;
  }
  .scc-header h1 {
    font-size: 1.85rem !important;
    flex-direction: column;
    gap: 0.5rem;
  }
  .scc-tab-nav {
    flex-wrap: wrap !important;
    gap: 0.25rem !important;
    margin-bottom: 1.5rem !important;
  }
  .scc-tab-btn {
    flex: 1 1 calc(50% - 0.25rem) !important;
    justify-content: center !important;
    font-size: 0.82rem !important;
    padding: 0.5rem 0.25rem !important;
    border-bottom: 2px solid transparent !important;
  }
  .scc-tab-btn.active {
    border-bottom-color: #0284c7 !important;
  }
  .scc-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .scc-utilities-row {
    flex-direction: column !important;
    gap: 1rem !important;
  }
}
