/* --- CONVERSION ORCHESTRATOR STYLES --- */

/* PWA Popup */
#orchestrator-pwa-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: sans-serif;
}

.orch-pwa-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.orch-pwa-title {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.orch-pwa-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #999;
}

.orch-pwa-desc {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.orch-pwa-actions {
    display: flex;
    gap: 10px;
}

#orch-pwa-install-btn {
    flex: 1;
    background: #00bcd4;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.orch-pwa-snooze-btn {
    flex: 1;
    background: #f0f0f0;
    color: #333;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}

/* Hero Dashboard */
.hero-dashboard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

.hero-dashboard h2 {
    margin: 0;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.hero-stat-item {
    color: white;
    font-size: 0.9rem;
}

/* Search CTA */
.search-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 2rem 0;
}

/* Utilities */
/* Specific overrides if needed */

/* Badges */
.poi-badge-owned {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0fdf4 !important;
    color: #166534 !important;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid #dcfce7 !important;
}

.poi-badge-active {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff1f2 !important;
    color: #e11d48 !important;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid #ffe4e6 !important;
}

.poi-badge-claim {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff7ed !important;
    color: #c2410c !important;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid #ffedd5 !important;
    cursor: pointer;
    text-decoration: none !important;
}

/* Reassurance Banner */
.poi-reassurance-banner {
    margin-top: 10px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.poi-reassurance-banner i {
    color: #3b82f6;
}