@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
.cnc-dashboard-widget-content{
    font-family: "Poppins", sans-serif;
}
.cnc-dashboard-progress {
    text-align: center;
    padding: 15px;
}
.cnc-progress-circle {
    width: 100px;
    height: 100px;
    margin: 0;
    position: relative;
    background: #f0f0f1;
    border-radius: 50%;
    overflow: hidden;
}
.cnc-progress-circle-container {
    position: relative;
}
.cnc-progress-circle .percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #6167f8;
}
.cnc-dashboard-stats {
    margin-top: 15px;
    text-align: left;
}
.cnc-dashboard-stats p {
    margin: 5px 0;
}
.cnc-dashboard-widget-content {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
/* Chart Container */
.cnc-dashboard-chart-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}
#conversionChart {
    width: 200px !important;
    height: 200px !important;
}
.cnc-chart-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 50%;
}
.cnc-chart-center-text .percentage {
    font-size: 28px;
    font-weight: 600;
    color: #6167f8;
    line-height: 1.2;
}
.cnc-chart-center-text .label {
    font-size: 13px;
    color: #50575e;
    margin-top: 4px;
}
/* Stats Container */
.cnc-dashboard-stats {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 15px;
    margin-top: 20px;
}
.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}
.stat-item:last-child {
    border-bottom: none;
}
.stat-item:hover {
    background-color: #f0f0f1;
}
.stat-label {
    color: #50575e;
    font-weight: 500;
    font-size: 13px;
}
.stat-value {
    color: #6167f8;
    font-weight: 600;
    font-size: 13px;
}
/* No Conversion State */
.cnc-no-conversion {
    text-align: center;
    padding: 30px 20px;
}
.cnc-status-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #6167f8;
}
.cnc-no-conversion p {
    color: #50575e;
    margin-bottom: 20px;
    font-size: 14px;
}
.cnc-no-conversion .button-primary {
    padding: 8px 20px;
    height: auto;
    font-size: 14px;
}
/* Responsive Adjustments */
@media screen and (max-width: 782px) {
    .cnc-dashboard-chart-container {
        width: 180px;
        height: 180px;
    }
    #conversionChart {
        width: 180px !important;
        height: 180px !important;
    }
    
    .cnc-chart-center-text .percentage {
        font-size: 24px;
    }
} 
