/* 
   Marathi Tithi - 2026 Calendar Stylesheet
   Modern, responsive, SEO-optimized theme featuring traditional saffron highlights.
*/

@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Color Variables & Theme Configurations */
:root {
  --font-primary: 'Outfit', sans-serif;
  --font-marathi: 'Mukta', sans-serif;

  /* Theme Defaults (Light Theme) */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.85);
  --border-color: #e2e8f0;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --primary-color: #ff6f00; /* Rich Saffron */
  --primary-hover: #e65100;
  --secondary-color: #0284c7; /* Sky Blue */
  --accent-color: #e2e8f0;
  
  --holiday-color: #ef4444; /* Alert Red */
  --holiday-bg: #fef2f2;
  --weekend-bg: #f8fafc;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  
  --glass-blur: blur(12px);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* Dark Mode Overrides */
[data-theme="dark"] {
  --bg-primary: #090d16;
  --bg-secondary: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.85);
  --border-color: #1e293b;
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  
  --primary-color: #ff8f00;
  --primary-hover: #ffb300;
  --secondary-color: #38bdf8;
  --accent-color: #334155;
  
  --holiday-color: #f87171;
  --holiday-bg: #450a0a;
  --weekend-bg: #0b1329;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
  scroll-behavior: smooth;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Typography and Marathi Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.mr-text {
  font-family: var(--font-marathi);
}

/* Header & Navigation Styles */
header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] header {
  background-color: rgba(9, 13, 22, 0.8);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  fill: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style-type: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 550;
  font-size: 0.95rem;
  padding: 6px 4px;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

/* Action Buttons & Switches */
.theme-switch-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  border: 1px solid var(--border-color);
}

.theme-switch-btn:hover {
  background-color: var(--accent-color);
}

.theme-switch-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.theme-switch-btn .sun { display: none; }
[data-theme="dark"] .theme-switch-btn .sun { display: block; }
[data-theme="dark"] .theme-switch-btn .moon { display: none; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-primary);
}

/* Main Container Layouts */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-title-section {
  text-align: center;
  margin-bottom: 40px;
}

.page-title-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-title-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Hero Download Box */
.hero-download-box {
  background: linear-gradient(135deg, rgba(255, 111, 0, 0.08), rgba(2, 132, 199, 0.08));
  border: 1px dashed var(--primary-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-download-box h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: #ffffff !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(255, 111, 0, 0.2);
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Interactive Calendar Dashboard Layout */
.calendar-dashboard {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.calendar-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 24px;
  min-width: 0;
  width: 100%;
}

.calendar-control-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.calendar-selector-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.month-select-dropdown {
  padding: 10px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  outline: none;
}

.month-select-dropdown:focus {
  border-color: var(--primary-color);
}

.calendar-shaka-info {
  text-align: right;
}

.calendar-shaka-info h3 {
  font-size: 1.15rem;
  color: var(--primary-color);
}

.calendar-shaka-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Calendar Grid Styling */
.calendar-weekday-header {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
  font-weight: 700;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  gap: 8px;
}

/* Highlight Sunday in Red */
.calendar-weekday-header .sunday {
  color: var(--holiday-color);
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.day-cell {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.day-cell:hover {
  border-color: var(--primary-color);
  background-color: var(--bg-secondary);
  transform: scale(1.03);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.day-cell.is-empty {
  visibility: hidden;
  pointer-events: none;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.day-cell.sunday {
  background-color: var(--holiday-bg);
}

.day-cell.sunday .day-num {
  color: var(--holiday-color);
}

.day-cell.has-festival {
  border-bottom: 2px solid var(--primary-color);
}

.day-cell.is-holiday {
  background-color: var(--holiday-bg);
}

.day-cell.is-holiday .day-num {
  color: var(--holiday-color);
  font-weight: 700;
}

.day-cell.active-day {
  border: 2px solid var(--primary-color);
  background-color: var(--bg-secondary);
  box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.15);
}

.day-num {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-primary);
}

.day-tithi {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-family: var(--font-marathi);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.day-indicator-dot {
  position: absolute;
  bottom: 6px;
  left: 6px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: none;
}

.day-cell.has-festival .day-indicator-dot {
  display: block;
}

/* Detail Side-Panel */
.details-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  width: 100%;
}

.details-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 24px;
  min-width: 0;
  width: 100%;
}

.details-card h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary-color);
  padding-left: 10px;
}

/* Daily Details Preview Styling */
.panchang-preview-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panchang-date-hdr {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
}

.panchang-field {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
  font-size: 0.95rem;
  align-items: baseline;
}

.panchang-field .label {
  font-weight: 600;
  color: var(--text-secondary);
}

.panchang-field .val {
  color: var(--text-primary);
  font-family: var(--font-marathi);
  text-align: right;
  word-break: break-word;
}

.panchang-festival-alert {
  background-color: rgba(255, 111, 0, 0.08);
  border-left: 3px solid var(--primary-color);
  padding: 10px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  margin-top: 5px;
}

.panchang-festival-alert.is-holiday {
  background-color: var(--holiday-bg);
  border-left-color: var(--holiday-color);
}

.no-data-msg {
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding: 20px 0;
}

/* Rashi Bhavishya Layout */
.rashi-selector {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  margin-bottom: 15px;
  outline: none;
}

.rashi-content-box {
  background-color: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 15px;
  border-left: 3px solid var(--secondary-color);
}

.rashi-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.rashi-symbol {
  font-size: 1.4rem;
}

.rashi-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-family: var(--font-marathi);
}

/* Data Tables Styles (Competitor Outranking Sections) */
.content-section {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 30px;
  margin-bottom: 40px;
}

.content-section h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
  position: relative;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: var(--primary-color);
}

.content-section p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.responsive-table-wrapper {
  overflow-x: auto;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  text-align: left;
}

.styled-table th {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 2px solid var(--border-color);
}

.styled-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.styled-table tbody tr:nth-of-type(even) {
  background-color: rgba(248, 250, 252, 0.4);
}

[data-theme="dark"] .styled-table tbody tr:nth-of-type(even) {
  background-color: rgba(15, 23, 42, 0.2);
}

.styled-table tbody tr:hover {
  background-color: var(--accent-color);
}

/* Quick Month Links Grid */
.months-grid-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.month-link-btn {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.2s;
  display: block;
}

.month-link-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff !important;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.month-link-btn span {
  display: block;
  font-size: 0.8rem;
  font-weight: normal;
  margin-top: 2px;
}

/* Long Weekends and Tips Grid */
.long-weekends-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

/* FAQ Accordion Styling */
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-primary);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  outline: none;
}

.faq-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 20px 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

/* Footer Section */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 40px 20px 20px;
  margin-top: 60px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.footer-about p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links h4 {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.4;
}

/* Floating Elements (WhatsApp & Scroll Top) */
.whatsapp-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: transform 0.2s, background-color 0.2s;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
  background-color: #20ba5a;
}

.whatsapp-float-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Modals & Dialogs (For compact details on mobile) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 90%;
  max-width: 450px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.2s ease;
  position: relative;
}

.modal-overlay.show .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.modal-close-btn:hover {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .calendar-dashboard {
    grid-template-columns: 1fr;
  }
  
  .months-grid-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 10px 15px;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--border-color);
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 15px;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 998;
  }
  
  [data-theme="dark"] .nav-links {
    background-color: rgba(15, 23, 42, 0.95);
  }
  
  .nav-links.active,
  .nav-links.show {
    left: 0;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
  }
  
  .nav-links a:hover {
    background-color: var(--accent-color);
  }
  
  .months-grid-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  main {
    padding: 20px 10px;
  }
  
  .calendar-card {
    padding: 12px 10px;
  }
  
  .calendar-weekday-header {
    gap: 4px;
  }
  
  .calendar-days-grid {
    gap: 4px;
  }
  
  .day-cell {
    padding: 3px;
  }
  
  .day-num {
    font-size: 1.05rem;
  }
  
  .day-tithi {
    font-size: 0.62rem;
  }
  
  .content-section {
    padding: 18px 12px;
  }
  
  .hero-download-box {
    padding: 20px 12px;
  }
  
  .details-card {
    padding: 15px 12px;
  }
  
  .long-weekends-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .months-grid-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .calendar-selector-wrap {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .month-select-dropdown {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .page-title-section h1 {
    font-size: 1.75rem;
  }
  
  .logo-link span span {
    display: none;
  }
  
  .logo-link {
    font-size: 1.2rem;
  }
}

/* PRINT MEDIA STYLES - Ensures beautiful calendar layouts on physical print */
@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  header, footer, .hero-download-box, .theme-switch-btn, .whatsapp-float-btn, .months-grid-links, .faq-wrap, .details-panel, .rashi-selector, .calendar-selector-wrap {
    display: none !important;
  }
  main {
    padding: 0;
    max-width: 100%;
  }
  .calendar-dashboard {
    grid-template-columns: 1fr;
  }
  .calendar-card {
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .day-cell {
    border: 1px solid #000000;
    background: #ffffff !important;
    aspect-ratio: 1.2;
  }
  .day-cell.sunday {
    background: #f0f0f0 !important;
  }
  .day-num, .day-tithi {
    color: #000000 !important;
  }
  .content-section {
    page-break-before: always;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}
