@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --primary-color: #0066ff;
  --primary-hover: #0052cc;
  --primary-subtle: #e8f1ff;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --bg-page: #f8fafc;
  --sidebar-width: 250px;
  --font-family-base: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--font-family-base);
  color: var(--text-body);
  background-color: var(--bg-page);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .fw-bold, .fw-semibold {
  font-family: var(--font-family-base);
  color: var(--text-dark);
}

/* ========================================================
   LOGIN PAGE STYLES
   ======================================================== */
.login-container {
  min-height: 100vh;
  display: flex;
  overflow-x: hidden;
}

.login-left {
  flex: 1.05;
  background: linear-gradient(160deg, #f9fbff 0%, #f0f6ff 50%, #e8f2fe 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.5rem 4.5rem;
  overflow: hidden;
}

.login-left-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

.login-left-content {
  position: relative;
  z-index: 2;
}

.portal-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0c152e;
  letter-spacing: -0.5px;
  margin-top: 3.5rem;
  margin-bottom: 0.85rem;
}

.portal-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 3.5rem;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 500px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: #e3efff;
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 2px 6px rgba(0, 102, 255, 0.06);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.15rem;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.partner-tagline {
  font-size: 0.88rem;
  color: #5a739b;
  letter-spacing: 0.08em;
  font-weight: 500;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

/* Right Section */
.login-right {
  flex: 1.15;
  background-color: #f7f9fb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem 2rem;
}

.login-card-wrapper {
  width: 100%;
  max-width: 470px;
  margin: auto 0;
}

.login-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #edf2f7;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
  padding: 3rem 2.75rem;
  text-align: center;
}

.card-logo {
  height: 38px;
  margin-bottom: 1.25rem;
}

.login-card-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.login-card-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Form Controls */
.form-group-custom {
  text-align: left;
  margin-bottom: 1.35rem;
}

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

.input-icon-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-group .input-icon-left {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 1.05rem;
  pointer-events: none;
}

.input-icon-group .form-control {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-family-base);
  color: #1e293b;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.input-icon-group .form-control::placeholder {
  color: #94a3b8;
  font-size: 0.93rem;
}

.input-icon-group .form-control:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
  outline: none;
}

.input-icon-group .input-toggle-password {
  position: absolute;
  right: 14px;
  color: #64748b;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
}

.input-icon-group .input-toggle-password:hover {
  color: var(--text-dark);
}

.forgot-password-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

.forgot-password-link:hover {
  text-decoration: underline;
  color: var(--primary-hover);
}

.btn-sign-in {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  height: 48px;
  border-radius: 10px;
  width: 100%;
  margin-top: 1.25rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-sign-in:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #ffffff;
}

.divider-or {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
}

.divider-or::before,
.divider-or::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.divider-or span {
  padding: 0 1rem;
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 600;
}

.btn-google {
  height: 48px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  transition: background-color 0.2s, border-color 0.2s;
}

.btn-google:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

.card-bottom-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 1.75rem;
}

.card-bottom-link a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.card-bottom-link a:hover {
  text-decoration: underline;
}

.login-footer-row {
  width: 100%;
  max-width: 470px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748b;
  padding-top: 1rem;
}

/* ========================================================
   DASHBOARD STYLES
   ======================================================== */
.app-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

/* Top Navbar */
.top-navbar {
  height: 68px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  padding: 0 2rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  flex-shrink: 0;
}

.nav-brand-logo {
  height: 32px;
}

.nav-search-box {
  position: relative;
  width: 220px;
}

.nav-search-input {
  height: 36px;
  border-radius: 20px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.88rem;
  padding-left: 2.2rem;
  padding-right: 0.75rem;
  width: 100%;
  outline: none;
  transition: all 0.2s ease;
}

.nav-search-input:focus {
  background-color: #ffffff;
  border-color: #0066ff;
  box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.1);
}

.nav-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.85rem;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-action-link {
  color: #475569;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: color 0.15s;
}

.nav-action-link:hover {
  color: var(--primary-color);
}

.nav-avatar-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #dbeafe;
  color: #1e40af;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Dashboard Body Layout */
.dashboard-layout {
  display: flex;
  flex: 1;
  height: calc(100vh - 68px);
  overflow: hidden;
}

/* Sidebar */
.dashboard-sidebar {
  width: var(--sidebar-width);
  background: #ffffff;
  border-right: 1px solid #f1f5f9;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  flex-shrink: 0;
}

.sidebar-heading {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  padding: 0.25rem 0.75rem 0.85rem;
  margin-bottom: 0.25rem;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.sidebar-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.sidebar-link:hover {
  background-color: #f8fafc;
  color: var(--text-dark);
}

.sidebar-link.active {
  background-color: #eef4ff;
  color: var(--primary-color);
  font-weight: 600;
}

.sidebar-submenu {
  list-style: none;
  padding-left: 1.85rem;
  margin: 0.25rem 0;
  position: relative;
}

.sidebar-submenu::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1.5px;
  background-color: #e2e8f0;
}

.sidebar-sublink {
  display: block;
  padding: 0.45rem 0.75rem;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s;
}

.sidebar-sublink:hover {
  color: var(--primary-color);
}

/* Main Content Area */
.dashboard-main {
  flex: 1;
  background-color: #f8fafc;
  padding: 2.25rem 2.5rem;
  overflow-y: auto;
  height: 100%;
}

/* Custom modern scrollbars for main content and sidebar */
.dashboard-main::-webkit-scrollbar {
  width: 8px;
}
.dashboard-main::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.dashboard-main::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.dashboard-main::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.dashboard-sidebar::-webkit-scrollbar {
  width: 5px;
}
.dashboard-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.dashboard-sidebar::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .app-wrapper {
    height: auto;
    max-height: none;
    overflow: visible;
  }
  .dashboard-layout {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .dashboard-sidebar {
    width: 100%;
    height: auto;
    overflow-y: visible;
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }
  .dashboard-main {
    padding: 1.5rem 1rem;
    height: auto;
    overflow-y: visible;
  }
}

.welcome-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.welcome-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.welcome-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.header-meta-date {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
  text-align: right;
  margin-bottom: 0.15rem;
}

.header-meta-tagline {
  font-size: 0.85rem;
  color: #64748b;
  text-align: right;
  margin: 0;
}

/* Stat Cards */
.stat-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  height: 100%;
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.stat-icon-blue {
  background-color: #e0edff;
  color: #0066ff;
}

.stat-icon-purple {
  background-color: #f3e8ff;
  color: #9333ea;
}

.stat-icon-amber {
  background-color: #fef3c7;
  color: #d97706;
}

.stat-icon-green {
  background-color: #dcfce7;
  color: #16a34a;
}

.stat-body {
  flex: 1;
}

.stat-label {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.stat-value-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.stat-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.stat-badge-pill {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #dcfce7;
  color: #16a34a;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.stat-subtext {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
}

/* Dashboard Section Cards (Chart & Table) */
.section-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  margin-bottom: 1.75rem;
  padding: 1.5rem;
}

.section-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.section-header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.section-header-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.section-subtitle {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0.15rem 0 0;
}

.filter-select-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-select-btn:hover {
  background-color: #f8fafc;
}

.view-all-link {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.view-all-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Submissions Table */
.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.custom-table th {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
}

.custom-table td {
  padding: 1rem 1rem;
  font-size: 0.92rem;
  color: #334155;
  border-bottom: 1px solid #f8fafc;
  vertical-align: middle;
}

.custom-table tr:last-child td {
  border-bottom: none;
}

.custom-table .item-name {
  font-weight: 600;
  color: #0f172a;
}

.custom-table .item-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.custom-table .item-link:hover {
  text-decoration: underline;
}

/* Status Badges */
.badge-status {
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-block;
}

.badge-under-review {
  background-color: #fef9c3;
  color: #a16207;
}

.badge-approved {
  background-color: #dcfce7;
  color: #15803d;
}

.badge-changes-requested {
  background-color: #fee2e2;
  color: #b91c1c;
}

.badge-live {
  background-color: #dcfce7;
  color: #15803d;
}

.badge-draft {
  background-color: #f1f5f9;
  color: #475569;
}

.btn-actions-menu {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.btn-actions-menu:hover {
  background-color: #f1f5f9;
  color: #334155;
}

/* Footer */
.dashboard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .login-container {
    flex-direction: column;
  }
  .login-left {
    padding: 2.5rem 1.5rem;
  }
  .login-right {
    padding: 2.5rem 1.5rem;
  }
  .dashboard-layout {
    flex-direction: column;
  }
  .dashboard-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }
  .dashboard-main {
    padding: 1.5rem 1rem;
  }
  .welcome-header {
    flex-direction: column;
    gap: 1rem;
  }
  .header-meta-date, .header-meta-tagline {
    text-align: left;
  }
}

/* ========================================================
   PROVIDER PROFILE SPECIFIC STYLES
   ======================================================== */
.nav-top-link {
  color: #475569;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: all 0.15s;
}

.nav-top-link:hover {
  color: var(--primary-color);
  background-color: #f8fafc;
}

.nav-top-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

.profile-input {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.92rem;
  color: #1e293b;
  font-family: var(--font-family-base);
  padding: 0.6rem 0.85rem;
}

.profile-input:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
  outline: none;
}

.profile-avatar-box {
  width: 110px;
  height: 110px;
  background-color: #1e293b;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-tag-pill {
  background-color: #eff6ff;
  color: #0066ff;
  border-radius: 20px;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbeafe;
}

.category-tag-pill i {
  cursor: pointer;
  font-size: 0.95rem;
  margin-left: 0.25rem;
}

.category-tag-pill i:hover {
  color: #0044cc;
}

/* Public Profile Preview Box */
.preview-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.preview-avatar-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: #1e293b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.preview-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.preview-tag-pill {
  background-color: #eff6ff;
  color: #0066ff;
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  border: 1px solid #dbeafe;
}

.badge-status-active {
  background-color: #dcfce7;
  color: #15803d;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #16a34a;
}

/* ========================================================
   MODELS - NEW FORM & SLIDER TOGGLE STYLES
   ======================================================== */
.step-badge {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
}

.upload-dropzone {
  border: 1.5px dashed #cbd5e1;
  background-color: #fafbfc;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.upload-dropzone:hover {
  border-color: var(--primary-color);
  background-color: #f0f6ff;
}

.upload-icon-circle {
  font-size: 1.85rem;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
}

.input-file-card {
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.15rem 0.75rem 0.85rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.input-file-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.input-file-icon {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 0.45rem;
}

.input-file-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.15rem;
}

.input-file-subtext {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

/* Slider toggle under file upload & playground */
.card-slider-toggle {
  width: 100%;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.custom-slider-switch .form-check-input {
  width: 2.5rem;
  height: 1.35rem;
  cursor: pointer;
}

.custom-slider-switch .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.toggle-state-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  min-width: 50px;
}

.toggle-state-text.active {
  color: var(--primary-color);
}

.playground-toggle-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.playground-toggle-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
}

/* Large Code Editor Container */
.code-editor-box {
  background-color: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 10px;
  overflow: hidden;
}

.code-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  background: #1e293b;
  border-bottom: 1px solid #334155;
  font-size: 0.82rem;
  color: #94a3b8;
}

.code-editor-textarea {
  background: #0f172a;
  color: #f8fafc;
  font-family: 'SFMono-Regular', Consolas, Menlo, Monaco, 'Courier New', monospace;
  font-size: 0.92rem;
  line-height: 1.65;
  padding: 1.25rem;
  border: none;
  width: 100%;
  min-height: 340px;
  resize: vertical;
  outline: none;
}

.code-editor-textarea:focus {
  background: #0f172a;
  color: #ffffff;
  outline: none;
  box-shadow: none;
}

/* ========================================================
   OFFICIAL EKLEVEL SVG ICONS & LOGO STYLING
   ======================================================== */
.sidebar-icon-svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.15s ease, opacity 0.15s ease, filter 0.15s ease;
}

.sidebar-link:not(.active) .sidebar-icon-svg {
  opacity: 0.72;
  filter: grayscale(80%) brightness(0.9);
}

.sidebar-link.active .sidebar-icon-svg {
  opacity: 1;
  filter: drop-shadow(0 1px 2px rgba(10, 89, 252, 0.3));
}

.sidebar-link:hover .sidebar-icon-svg {
  opacity: 1;
  filter: none;
}

.stat-icon-svg {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.lang-tab-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.social-icon-svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
