.cqv-wrapper{
    max-width:800px;
    margin:40px auto;
}

.cqv-form{
    display:flex;
    gap:10px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.cqv-form input{
    flex:1;
    min-width:250px;
    padding:14px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:16px;
}

.cqv-form button{
    background:#0066cc;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
}

.cqv-form button:hover{
    background:#004b99;
}

.cqv-card{
    background:#ffffff;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    padding:30px;
}

.cqv-success{
    background:#ecfdf5;
    border-left:5px solid #16a34a;
    padding:20px;
    margin-bottom:25px;
}

.cqv-success h2{
    margin:0 0 10px;
    color:#15803d;
}

.cqv-success p{
    margin:0;
}

.cqv-table{
    width:100%;
    border-collapse:collapse;
}

.cqv-table th{
    width:35%;
    text-align:left;
    padding:14px;
    background:#f8f8f8;
    border-bottom:1px solid #eee;
}

.cqv-table td{
    padding:14px;
    border-bottom:1px solid #eee;
}

.cqv-valid{
    color:#16a34a;
    font-weight:bold;
}

.cqv-expired{
    color:#dc2626;
    font-weight:bold;
}

.cqv-revoked{
    color:#dc2626;
    font-weight:bold;
}

.cqv-error{
    background:#fef2f2;
    border-left:5px solid #dc2626;
    padding:25px;
    border-radius:8px;
}

.cqv-error h2{
    color:#dc2626;
    margin-top:0;
}

@media(max-width:768px){

.cqv-form{
    display:block;
}

.cqv-form input{
    width:100%;
    margin-bottom:15px;
}

.cqv-form button{
    width:100%;
}

.cqv-table th,
.cqv-table td{
    display:block;
    width:100%;
}

.cqv-table th{
    border-bottom:none;
    padding-bottom:5px;
}

}

.cqv-status-header{
    text-align:center;
    margin-bottom:30px;
}

.cqv-badge{
    display:inline-block;
    background:#16a34a;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-weight:bold;
    margin-bottom:15px;
}

.cqv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.cqv-item{
    background:#f8f9fa;
    padding:20px;
    border-radius:10px;
}

.cqv-item span{
    display:block;
    color:#666;
    font-size:13px;
    margin-bottom:8px;
}

.cqv-item strong{
    font-size:18px;
}

@media(max-width:768px){

.cqv-grid{

grid-template-columns:1fr;

}

}

.cqv-header{
    text-align:center;
    margin-bottom:35px;
}

.cqv-logo{
    max-width:180px;
    height:auto;
    margin-bottom:20px;
}

.cqv-header h1{
    margin:0;
    font-size:32px;
    font-weight:700;
    color:#1f2937;
}

.cqv-header p{
    margin-top:10px;
    color:#666;
    font-size:18px;
}