/* Frontend CSS */
.mr-quota-widget {
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}
.mr-quota-widget.danger {
    border-color: #f44336;
    background: #ffebee;
}
.mr-quota-widget.warning {
    border-color: #ff9800;
    background: #fff3e0;
}
.mr-progress-bar {
    background: #e0e0e0;
    height: 10px;
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
}
.mr-progress-fill {
    background: #4caf50;
    height: 100%;
    transition: width 0.3s ease;
}
.mr-quota-widget.danger .mr-progress-fill {
    background: #f44336;
}
.mr-quota-widget.warning .mr-progress-fill {
    background: #ff9800;
}

/* Upgrade Plans */
.mr-upgrade-plans {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.mr-plan {
    flex: 1;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
.mr-plan.merchant {
    border-color: #2196f3;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.mr-plan h3 {
    margin-top: 0;
}
.mr-plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.mr-plan li {
    margin-bottom: 10px;
}
