/* eBusiness Nutrition Dashboard Styles */
.ebiz-nutrition-dashboard {
    margin: 40px auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.ebiz-dashboard-header {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}

/* Donut Chart and Container Styles */
.ebiz-donut-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ebiz-donut-wrapper {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
}

.ebiz-donut-chart {
    width: 100%;
    height: 100%;
}

.ebiz-donut-ring {
    fill: none;
    stroke-width: 3.8;
}

.ebiz-donut-segment {
    fill: none;
    stroke-width: 3.8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.3s ease;
}

.ebiz-donut-number {
    fill: #333;
    font-size: 10px;
    font-weight: 700;
    text-anchor: middle;
    dominant-baseline: middle;
    font-family: 'Space Mono', 'Courier New', Courier, monospace;
}

/* Score Cards Grid */
.ebiz-score-cards {
    padding: 0 20px 20px;
}

.ebiz-score-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ebiz-card-label {
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #374151;
}

.ebiz-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ebiz-card-value {
    font-weight: 700;
    color: #fff;
    font-family: 'Space Mono', 'Courier New', Courier, monospace;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ebiz-progress-bar {
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.ebiz-card-detail {
    color: #555;
    line-height: 1.5;
}

/* Report Sections */
.ebiz-report-sections {
    margin-top: 40px;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ebiz-nutrition-dashboard {
        margin: 20px auto;
    }

    .ebiz-donut-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .ebiz-donut-number {
        font-size: 10px;
    }
}
