.usd-quotation-wrapper{
    width:100%;
    max-width:none;
    margin:5px auto;
    background:#fbfbfb;
    padding:20px;
    border-radius:8px;
    overflow-x:auto;
    box-sizing:border-box;
}

.usd-tabs{
    display:flex;
    gap:8px;
    margin-bottom:20px;
    flex-wrap:wrap;
    align-items:center;
}

.usd-tab{
    padding:6px 16px;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    font-size:13px;
    font-weight:500;
    border-radius:4px;
    transition:0.3s;
}

.usd-tab:hover{
    background:#e8f0fe;
}

.usd-tab.active{
    background:#0170FC;
    color:#fff;
    border-color:#0170FC;
}

.usd-more{
    margin-left:auto;
    font-size:12px;
    color:#0170FC;
    text-decoration:none;
}

.usd-more:hover{
    text-decoration:underline;
}

.usd-table{
    width:100%;
    min-width:1000px;
    border-collapse:collapse;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 1px 3px rgba(0,0,0,0.05);
}

.usd-table thead tr{
    background:#F0F5FC;
}

.usd-table th{
    padding:12px 10px;
    text-align:center;
    font-size:12px;
    font-weight:600;
    color:#646465;
    border-bottom:1px solid #e5e5e5;
    white-space:nowrap;
}

.usd-table td{
    padding:12px 10px;
    text-align:center;
    border-bottom:1px solid #eef2f6;
    font-size:12px;
    color:#333;
    white-space:nowrap;
}

.usd-blue{
    color:#0170FC;
    font-weight:600;
}

.usd-btn-group{
    display:flex;
    gap:8px;
    justify-content:center;
}

.usd-btn{
    display:inline-block;
    padding:4px 12px;
    background:#0170FC;
    color:#fff !important;
    text-decoration:none;
    border-radius:3px;
    font-size:11px;
    transition:0.3s;
    border:none;
    cursor:pointer;
}

.usd-btn:hover{
    background:#0a5cb8;
}

.usd-btn-outline{
    background:transparent;
    border:1px solid #0170FC;
    color:#0170FC !important;
}

.usd-btn-outline:hover{
    background:#0170FC;
    color:#fff !important;
}

.lock-icon{
    font-size:14px;
}

.no-data{
    text-align:center;
    padding:40px;
    color:#999;
    font-size:14px;
}

@media(max-width:768px){
    .usd-quotation-wrapper{
        padding:12px;
    }
    .usd-quotation-title{
        font-size:22px;
    }
    .usd-table{
        min-width:900px;
    }
    .usd-tab{
        padding:4px 12px;
        font-size:12px;
    }
}