/* ========================================
   R.K. SRIVASTAVA & ASSOCIATES
   Accounting & Bookkeeping Services Page Specific Styles
   Tax Consultancy & Legal Services
   ======================================== */

/* ======= GLOBAL RESETS & VARIABLES (ENSURING CONSISTENCY) ======= */
:root {
  --navy: #0B1F3A;
  --navy-dark: #061429;
  --navy-light: #1a3a5f;
  --gold: #C9992B;
  --gold-dark: #A67C1E;
  --gold-light: #D9B45B;
  --gold-pale: #FFF8F0;
  --white: #FFFFFF;
  --cream: #F9F7F4;
  --text-dark: #1A202C;
  --text-mid: #4A5568;
  --text-muted: #718096;
  --border: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'DM Sans', sans-serif;
}

.accounting-page {
  --acct-card-bg: var(--white);
  --acct-header-bg: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  --acct-border-hover: var(--gold);
  --acct-shadow-hover: 0 20px 40px rgba(11,31,58,0.12);
}

/* ======= SERVICE HERO SECTION ======= */
.accounting-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.accounting-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,153,43,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: accountingPulse 8s infinite ease-in-out;
}

.accounting-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,153,43,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: accountingPulse 6s infinite ease-in-out reverse;
}

@keyframes accountingPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.accounting-hero-content {
  position: relative;
  z-index: 2;
}

.accounting-hero-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-pale);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: accountingFloat 3s ease-in-out infinite;
}

@keyframes accountingFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.accounting-hero-icon svg {
  width: 45px;
  height: 45px;
  fill: var(--gold);
}

/* ======= ACCOUNTING SERVICE CARDS ======= */
.accounting-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0;
}

.acct-service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.8rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.acct-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.acct-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--acct-shadow-hover);
}

.acct-service-card:hover::before {
  transform: scaleX(1);
}

.acct-service-icon {
  width: 70px;
  height: 70px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: all 0.3s ease;
}

.acct-service-card:hover .acct-service-icon {
  background: var(--gold);
  transform: scale(1.05);
}

.acct-service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
  transition: all 0.3s ease;
}

.acct-service-card:hover .acct-service-icon svg {
  fill: var(--white);
}

.acct-service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.acct-service-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ======= TALLY SERVICES SECTION ======= */
.tally-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  border-radius: 24px;
  padding: 2rem;
  margin: 2rem 0;
}

.tally-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tally-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tally-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.tally-header h3 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--navy);
}

.tally-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.tally-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.tally-feature-item:hover {
  transform: translateX(5px);
  border-color: var(--gold);
  background: var(--gold-pale);
}

.tally-feature-icon {
  font-size: 1.5rem;
}

.tally-feature-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* ======= INFO BOXES ======= */
.acct-info-box {
  background: var(--gold-pale);
  border-radius: 16px;
  padding: 1.3rem;
  margin: 1.3rem 0;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.acct-info-box:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.acct-info-box h4 {
  margin-bottom: 0.6rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
}

.acct-info-box p {
  margin-bottom: 0;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ======= DOCUMENTS LIST ======= */
.acct-doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.acct-doc-list li {
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px dashed var(--border);
  transition: all 0.3s ease;
  color: var(--text-mid);
}

.acct-doc-list li:last-child {
  border-bottom: none;
}

.acct-doc-list li:hover {
  transform: translateX(6px);
  color: var(--gold);
}

.acct-doc-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  font-size: 0.9rem;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.acct-doc-list li:hover::before {
  background: var(--gold);
  color: var(--white);
}

/* ======= FINANCIAL STATEMENTS GRID ======= */
.financial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .financial-grid {
    grid-template-columns: 1fr;
  }
}

/* ======= BENEFIT CARDS ======= */
.acct-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-pale) 100%);
  border-radius: 18px;
  padding: 1.6rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: benefitBounce 2s infinite;
}

@keyframes benefitBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.benefit-card p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ======= PROCESS STEPS ======= */
.acct-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.process-step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.6rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.process-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.process-step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(201,153,43,0.3);
}

.process-step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.process-step-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ======= PRICE TABLE ======= */
.acct-price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}

.acct-price-table th,
.acct-price-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.acct-price-table th {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.acct-price-table tr {
  transition: all 0.3s ease;
}

.acct-price-table tr:hover {
  background: var(--gold-pale);
}

.acct-price-table td:first-child {
  font-weight: 500;
}

.acct-price-table td:nth-child(2) {
  font-weight: 600;
  color: var(--gold);
}

/* ======= COMPARISON TABLE ======= */
.acct-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}

.acct-comparison-table th,
.acct-comparison-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.acct-comparison-table th {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.acct-comparison-table tr:hover {
  background: var(--gold-pale);
}

.acct-comparison-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

/* ======= FAQ SECTION ======= */
.acct-faq {
  margin: 2rem 0;
}

.acct-faq-item {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.acct-faq-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.acct-faq-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: var(--navy);
}

.acct-faq-question:hover {
  background: var(--gold-pale);
}

.acct-faq-question .faq-icon {
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.acct-faq-item.active .acct-faq-question .faq-icon {
  transform: rotate(180deg);
}

.acct-faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.7;
}

.acct-faq-item.active .acct-faq-answer {
  padding: 0 1.25rem 1.25rem;
  max-height: 400px;
}

/* ======= SIDEBAR COMPONENTS ======= */
.acct-sidebar {
  position: sticky;
  top: 100px;
}

.acct-sidebar-widget {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.acct-sidebar-widget:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.acct-sidebar-widget h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* Service Navigation */
.acct-service-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.acct-service-nav li {
  margin-bottom: 0.5rem;
}

.acct-service-nav li a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--text-mid);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 500;
}

.acct-service-nav li a:hover {
  background: var(--gold-pale);
  color: var(--gold);
  transform: translateX(5px);
}

.acct-service-nav li a.active {
  background: var(--gold-pale);
  color: var(--gold);
  font-weight: 600;
}

/* Quick Contact Widget */
.acct-quick-contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  text-align: center;
}

.acct-quick-contact h3 {
  color: var(--white);
  border-bottom-color: var(--gold-light);
}

.acct-quick-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* Why Choose Us Widget */
.acct-why-choose {
  background: var(--gold-pale);
}

.acct-why-list {
  list-style: none;
  padding: 0;
}

.acct-why-list li {
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem 0;
  transition: all 0.3s ease;
}

.acct-why-list li:hover {
  transform: translateX(5px);
  color: var(--gold);
}

.acct-why-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  background: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Software Support Widget */
.acct-software-list {
  list-style: none;
  padding: 0;
}

.acct-software-list li {
  margin-bottom: 0.6rem;
  padding: 0.5rem;
  background: var(--cream);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.acct-software-list li:hover {
  background: var(--gold-pale);
  transform: translateX(3px);
}

/* Free Assessment Widget */
.acct-assessment-widget {
  text-align: center;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-pale) 100%);
}

.assessment-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-serif);
  margin: 0.5rem 0;
}

/* ======= NAVBAR & ADDITIONAL COMPONENTS ======= */
.navbar {
  background: var(--white);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  font-family: var(--font-serif);
}

.logo-text .firm-name {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.1rem;
  display: block;
  line-height: 1.2;
}

.logo-text .since {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu li a:hover {
  color: var(--gold);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 10;
  padding: 0.5rem 0;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text-mid);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--navy);
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--cream);
  padding: 0.8rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.breadcrumbs a {
  color: var(--text-mid);
  text-decoration: none;
}

.breadcrumbs .current {
  color: var(--gold);
}

/* Sticky CTA & Floats */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 1000;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.whatsapp-btn, .call-float {
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.call-float {
  background: var(--gold);
}

.whatsapp-btn svg, .call-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: 3rem 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 2rem 0 1rem;
  margin-top: 3rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ======= RESPONSIVE STYLES ======= */
@media (max-width: 1200px) {
  .acct-process { gap: 1rem; }
  .process-step-card { padding: 1.2rem; }
}

@media (max-width: 992px) {
  .acct-process { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .acct-benefits { grid-template-columns: repeat(2, 1fr); }
  .accounting-service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .accounting-hero { padding: 2.5rem 0; }
  .accounting-hero-icon { width: 60px; height: 60px; margin: 0 auto 1rem; }
  .acct-process { grid-template-columns: 1fr; }
  .acct-benefits { grid-template-columns: 1fr; }
  .accounting-service-grid { grid-template-columns: 1fr; }
  .acct-sidebar { position: static; margin-top: 2rem; }
  .acct-price-table th, .acct-price-table td, 
  .acct-comparison-table th, .acct-comparison-table td { padding: 0.6rem; font-size: 0.75rem; }
  .tally-header { flex-direction: column; text-align: center; }
  .tally-features { grid-template-columns: 1fr; }
  .sticky-cta { bottom: 15px; right: 15px; }
  .sticky-cta .btn { padding: 0.5rem 1rem; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .acct-faq-question { font-size: 0.85rem; padding: 0.8rem 1rem; }
  .acct-sidebar-widget { padding: 1rem; }
  .step-number { width: 45px; height: 45px; font-size: 1.2rem; }
}

/* ======= ANIMATIONS ======= */
@keyframes acctSlideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.acct-service-card, .process-step-card, .benefit-card, .acct-faq-item, .tally-feature-item {
  animation: acctSlideInUp 0.5s ease forwards;
  opacity: 0;
}

.acct-service-card:nth-child(1) { animation-delay: 0.05s; }
.acct-service-card:nth-child(2) { animation-delay: 0.1s; }
.acct-service-card:nth-child(3) { animation-delay: 0.15s; }
.acct-service-card:nth-child(4) { animation-delay: 0.2s; }
.process-step-card:nth-child(1) { animation-delay: 0.1s; }
.process-step-card:nth-child(2) { animation-delay: 0.2s; }
.process-step-card:nth-child(3) { animation-delay: 0.3s; }
.process-step-card:nth-child(4) { animation-delay: 0.4s; }

/* ======= PRINT STYLES ======= */
@media print {
  .accounting-hero { background: var(--navy); padding: 1rem 0; }
  .acct-service-card, .process-step-card, .benefit-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
  .acct-sidebar-widget, .sticky-cta, .whatsapp-float, .cta-section { display: none; }
}

/* ======= ACCESSIBILITY ======= */
@media (prefers-reduced-motion: reduce) {
  .acct-service-card, .process-step-card, .benefit-card { animation: none; opacity: 1; }
  .accounting-hero::before, .accounting-hero::after { animation: none; }
  .accounting-hero-icon { animation: none; }
}

/* ======= CUSTOM SCROLLBAR ======= */
.accounting-page ::-webkit-scrollbar { width: 8px; }
.accounting-page ::-webkit-scrollbar-track { background: var(--cream); border-radius: 4px; }
.accounting-page ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ======= TABLE WRAPPER ======= */
.acct-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 16px;
}
.acct-table-wrapper table {
  min-width: 600px;
}