.vlrfq-modal {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.6);
}

.vlrfq-modal-content {
    background:#fff;
    width:600px;
    margin:5% auto;
    padding:20px;
    border-radius:10px;
}

.vlrfq-step {
    display:none;
}

.vlrfq-step.active {
    display:block;
}

.vlrfq-progress {
    display:flex;
    gap:10px;
    margin-bottom:15px;
}

.vlrfq-progress .step {
    width:25px;
    height:25px;
    border-radius:50%;
    background:#ddd;
    text-align:center;
}

.vlrfq-progress .step.active {
    background:#2ecc71;
    color:#fff;
}

.vlrfq-status {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    color: #fff;
}

.status-pending { background: #f39c12; }
.status-reviewed { background: #3498db; }
.status-quoted { background: #9b59b6; }
.status-accepted { background: #2ecc71; }
.status-rejected { background: #e74c3c; }