/* Base styles */
:root {
    --primary-color: #307fe2;
    --secondary-color: #f8fafd;
    --text-color: #333;
    --border-color: #e0e0e0;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background-color: #fff;
}

/* Campaign container styles */
.campaign-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Performance Analytics styles */
.performanceAnalytics {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 20px;
}

/* Progress bar styles */
.rectangle {
    height: 8px;
    background: #e9e9e9;
    border-radius: 100px;
    overflow: hidden;
}

.rectangle2 {
    height: 100%;
    background: var(--primary-color);
    border-radius: 100px;
    transition: width 0.3s ease;
}

/* Stats row styles */
.bottomStatsRow {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .bottomStatsRow {
        flex-direction: column;
    }
} 