.business-dashboard {
    padding: 20px;
    background: #f4f7f6;
    min-height: calc(100vh - 160px);
}

.blurred-stats {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
    position: relative;
    opacity: 0.7;
}

.upsell-stats-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    text-align: center;
    border: 1px solid #ff8c42;
    max-width: 450px;
}

.upsell-stats-overlay h3 { margin-top: 0; color: #333; }
.upsell-stats-overlay p { color: #666; margin-bottom: 20px; }

.dashboard-header {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h1 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-card .value {
    font-size: 2rem;
    font-weight: bold;
    color: #ff8c42;
    display: block;
}

.stat-card .label {
    color: #777;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.poi-list {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.poi-list h3 {
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.poi-item {
    padding: 10px;
    border-bottom: 1px solid #f9f9f9;
}

.poi-item:last-child {
    border-bottom: none;
}