"""
DEWA PR Tracker — Configuration
"""

# ── URLs ──────────────────────────────────────────────────────────────────────
DEWA_NEWS_URL    = "https://www.dewa.gov.ae/en/about-us/media-publications/latest-news"
DEWA_PODCAST_URL = "https://www.dewa.gov.ae/en/about-us/media-publications/podcasts"
DEWA_BASE_URL    = "https://www.dewa.gov.ae"

# ── Database ──────────────────────────────────────────────────────────────────
DB_PATH = "dewa_tracker.db"

# ── ROI Settings ─────────────────────────────────────────────────────────────
COST_PER_PODCAST_OLD_AED = 20_000        # cost of a single podcast before NotebookLM
NOTEBOOKLM_MONTHLY_USD   = 20            # current NotebookLM subscription price
USD_TO_AED               = 3.67         # exchange rate
NOTEBOOKLM_START_DATE    = "2025-05-23"  # date DEWA announced NotebookLM adoption

# ── Scraper ───────────────────────────────────────────────────────────────────
SCRAPER_HEADLESS     = True         # set False to watch the browser during debug
SCRAPER_TIMEOUT_MS   = 30_000
SCRAPER_WAIT_AFTER_LOAD_MS = 3_000  # wait for JS to finish rendering

# ── Dashboard ─────────────────────────────────────────────────────────────────
DASHBOARD_TITLE = "DEWA Press Release & Podcast Tracker"
PAGE_SIZE       = 25                # rows per page in the PR table
