/* Premium Panchang Dashboard CSS */
.pv-dashboard { max-width: 1100px; margin: 0 auto; font-family: 'Poppins', sans-serif; color: #333; }
.pv-top-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
@media (min-width: 900px) { .pv-top-grid { grid-template-columns: 1.2fr 1fr; } } 

/* Calendar Section */
.pv-cal-box { background: #fff; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden; border: 1px solid #eee; }
.pv-cal-header { background: #1a1a1a; color: #fff; padding: 20px; display: flex; justify-content: space-between; align-items: center; text-align:center; }
.pv-cal-nav { background: #333; border: none; color: #fff; padding: 8px 15px; border-radius: 6px; cursor: pointer; transition: 0.3s; }
.pv-cal-nav:hover { background: #ff6600; }
.pv-hindu-month { display: block; font-size: 13px; color: #ff9933; margin-top: 5px; font-weight: normal; letter-spacing: 1px; }

.pv-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: #f0f0f0; }
.pv-cal-day { background: #fff8f0; text-align: center; padding: 12px 5px; font-weight: 700; color: #ff6600; font-size: 14px; border-bottom: 2px solid #ffe0b2; }
.pv-cal-cell { background: #fff; min-height: 90px; padding: 8px; cursor: pointer; display: flex; flex-direction: column; transition: 0.2s; position: relative; }
.pv-cal-cell:hover { background: #fffcf5; transform: scale(1.02); z-index: 2; box-shadow: 0 5px 15px rgba(255,102,0,0.2); }
.pv-cal-cell.today { background: #ffe0b2; border: 2px solid #ff6600; }
.pv-date-num { font-size: 18px; font-weight: bold; color: #2c3e50; }
.pv-fest-badge { background: #e91e63; color: #fff; font-size: 10px; padding: 3px 5px; border-radius: 4px; margin-top: auto; text-align: center; line-height: 1.2; }

/* Panchang Details Panel */
.pv-detail-panel { background: #fff; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); padding: 30px; border-top: 5px solid #ff6600; position: sticky; top: 20px; }
.pv-dp-title { font-size: 22px; font-weight: bold; color: #1a1a1a; margin: 0 0 5px 0; }
.pv-data-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 20px; }
.pv-data-card { background: #f9f9f9; padding: 15px; border-radius: 10px; border: 1px solid #eee; }
.pv-label { font-size: 12px; color: #888; display: block; margin-bottom: 5px; font-weight: 600; }
.pv-value { font-size: 16px; font-weight: bold; color: #333; }
.pv-value-sub { font-size: 12px; color: #d35400; display: block; margin-top: 3px; font-weight: 600; }

/* Upcoming Festivals Section */
.pv-upcoming-fest { margin-top: 30px; background: #fffcf5; padding: 20px; border-radius: 15px; border: 1px dashed #ff9933; }
.pv-upcoming-fest h4 { margin: 0 0 15px 0; color: #d35400; font-size: 18px; }
.pv-uf-list { list-style: none; padding: 0; margin: 0; }
.pv-uf-item { padding: 10px 0; border-bottom: 1px solid #ffe0b2; display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; }
.pv-uf-item:last-child { border-bottom: none; }
.pv-uf-date { color: #888; font-size: 12px; }

/* Educational Content Section (SEO) */
.pv-seo-content { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); margin-top: 40px; border: 1px solid #eee; }
.pv-seo-content h2 { color: #ff6600; font-size: 24px; border-bottom: 2px solid #fff8f0; padding-bottom: 10px; margin-bottom: 20px; }
.pv-seo-content h3 { color: #2c3e50; font-size: 18px; margin-top: 25px; margin-bottom: 10px; }
.pv-seo-content p { color: #555; line-height: 1.6; font-size: 15px; margin-bottom: 15px; }
.pv-seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
.pv-seo-card { background: #fdfdfd; padding: 20px; border-radius: 10px; border-left: 4px solid #3498db; }