.vc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    font-family: inherit;
}

@media ( max-width: 768px ) {
    .vc-wrapper {
        grid-template-columns: 1fr;
    }
}

.vc-panel {
    background: #ffffff;
    border: 1px solid #e2e5e9;
    border-radius: 10px;
    padding: 28px 26px;
    box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.06 );
}

.vc-panel-title {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1a1d21;
}

.vc-panel-subtitle {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0 0 20px;
    line-height: 1.4;
}

.vc-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.vc-input {
    width: 100%;
    padding: 11px 14px;
    margin-bottom: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
}

.vc-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba( 37, 99, 235, 0.12 );
}

.vc-hint {
    font-size: 12px;
    color: #6b7280;
    margin: -8px 0 14px;
}

.vc-submit-btn {
    width: 100%;
    padding: 11px 20px;
    background: #1d4ed8;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.15s ease;
}

.vc-submit-btn:hover:not( :disabled ) {
    background: #1743b0;
}

.vc-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.vc-result {
    margin-top: 22px;
}

.vc-error,
.vc-not-found {
    font-size: 14px;
    font-weight: 600;
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 12px 14px;
    margin: 0;
}

.vc-found {
    border: 1px solid #d1fae5;
    background: #f0fdf4;
    border-radius: 8px;
    padding: 16px 18px;
    animation: vc-fade-in 0.2s ease;
}

@keyframes vc-fade-in {
    from { opacity: 0; transform: translateY( 4px ); }
    to   { opacity: 1; transform: translateY( 0 ); }
}

.vc-details-table {
    width: 100%;
    border-collapse: collapse;
}

.vc-details-table tr {
    border-bottom: 1px solid rgba( 0, 0, 0, 0.06 );
}

.vc-details-table tr:last-child {
    border-bottom: none;
}

.vc-details-table th {
    text-align: left;
    padding: 8px 10px 8px 0;
    width: 45%;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    vertical-align: top;
}

.vc-details-table td {
    padding: 8px 0;
    font-size: 14.5px;
    font-weight: 500;
    color: #111827;
    vertical-align: top;
}
