.wpsi-data-container {
    padding: 15px 0;
}

.wpsi-data-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.wpsi-data-card {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.wpsi-data-card:hover {
    transform: translateY(-2px);
}

.wpsi-data-card.success {
    border-left: 4px solid #61ce70;
}

.wpsi-data-card.warning {
    border-left: 4px solid #fbc43d;
}

.wpsi-data-card .wpsi-card-header {
    color: rgba(180, 37, 37, 0.58);
    font-size: 0.9em;
    margin-bottom: 8px;
}

.wpsi-data-card .wpsi-card-number {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 8px;
}

.wpsi-data-card .wpsi-card-footer {
    color: rgba(180, 37, 37, 0.58);
    font-size: 0.85em;
}

.wpsi-progress-container {
    margin: 0 auto 15px;
    width: 100%;
}

.wpsi-progress {
    height: 18px;
    border-radius: 5px;
    background-color: #f7f7f7;
}

.wpsi-progress .wpsi-progress-bar {
    height: 100%;
    background-color: #61ce70;
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
}

.wpsi-totals-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.wpsi-totals-container .wpsi-totals-label {
    font-weight: 600;
}

.wpsi-totals-container .wpsi-totals-value {
    font-size: 1.1em;
    font-weight: 700;
}

.wpsi-no-data {
    text-align: center;
    padding: 20px;
    color: rgba(180, 37, 37, 0.58);
    font-style: italic;
}

/*# sourceMappingURL=shared-components.css.map */