.dila-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dila-dashboard-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    position: relative;
}

.dila-full-width {
    grid-column: 1 / -1;
}

.dila-card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #e0e0e0;
}

.dila-dashboard-card h2 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
}

.dila-stat {
    margin: 20px 0;
}

.dila-stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #2271b1;
    line-height: 1;
}

.dila-stat-number.warning {
    color: #d63638;
}

.dila-stat-number.success {
    color: #00a32a;
}

.dila-stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.dila-stat-details {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.dila-percentage {
    font-weight: 600;
    color: #2271b1;
}

.dila-card-action {
    margin-top: 20px;
}

.dila-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dila-quick-actions .button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dila-how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dila-step {
    text-align: center;
}

.dila-step-number {
    width: 40px;
    height: 40px;
    background: #2271b1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.dila-step h3 {
    font-size: 16px;
    margin: 0 0 10px 0;
}

.dila-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.dila-status-progress {
    color: #2271b1;
    margin-top: 10px;
    font-size: 13px;
}

.dila-status-progress .dashicons {
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(359deg); }
}

@media (max-width: 782px) {
    .dila-dashboard-grid {
        grid-template-columns: 1fr;
    }
}
