
/* Wrapper & card */
.auvate-mnp-wrapper{
    max-width: 720px;
    margin: 24px auto;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
.auvate-card{
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 18px 22px;
    border: 1px solid #e5edf7;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

/* Title */
.auvate-title{
    margin: 0 0 14px 0;
    font-size: 21px;
    letter-spacing: .03em;
    color: #111827;
}

/* Form row */
.auvate-mnp-form{
    margin-top: 4px;
}
.auvate-row{
    display: flex;
    gap: 10px;
}
.auvate-row input[type="text"]{
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    outline: none;
    background-color: #ffffff;
    color: #111827;
}
.auvate-row input[type="text"]:focus{
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
}

/* Primary button */
.auvate-btn{
    background: #2563eb;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
    transition: transform .08s ease, box-shadow .08s ease, background .08s ease;
}
.auvate-btn:hover{
    background: #1d4ed8;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
    transform: translateY(-1px);
}
.auvate-btn:disabled{
    opacity: .75;
    cursor: default;
    box-shadow: none;
    transform: none;
}

/* Progress bar – thin and subtle */
.auvate-progress{
    height: 3px;
    background: #e5e7eb;
    border-radius: 999px;
    margin-top: 14px;
    overflow: hidden;
    display: none;
}
.auvate-progress[aria-hidden="false"]{
    display: block;
}
.auvate-progress-bar{
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,#2563eb,#60a5fa);
    transition: width .35s ease;
}

/* Result area */
.auvate-result{
    margin-top: 18px;
    font-size: 14px;
    color: #111827;
}

/* Error message */
.auvate-error{
    background: #fef2f2;
    border-radius: 10px;
    border: 1px solid #fecaca;
    padding: 10px 12px;
    color: #991b1b;
}

/* Summary block */
.auvate-summary{
    padding: 8px 0 10px;
    border-bottom: 1px solid #e5e7eb;
}
.auvate-summary h4{
    margin: 0 0 6px;
    font-size: 17px;
    color: #111827;
}
.auvate-summary p{
    margin: 2px 0;
}
.auvate-label{
    font-weight: 500;
    color: #4b5563;
}
.auvate-value{
    color: #111827;
}

/* Status pill – blue */
.auvate-status-pill{
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: #1d4ed8;
    color: #f9fafb;
    font-size: 13px;
    font-weight: 600;
    margin-left: 6px;
}

/* Timeline */
.auvate-timeline{
    list-style: none;
    margin: 16px 0 0;
    padding: 0 0 0 18px;
    border-left: 2px solid #e5e7eb;
}
.auvate-timeline li{
    position: relative;
    margin: 14px 0;
    padding-left: 18px;
}
.auvate-timeline li::before{
    content: "";
    position: absolute;
    left: -23px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}
.ev-date{
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}
.ev-title{
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}
.ev-city{
    font-size: 13px;
    color: #4b5563;
}
.ev-text{
    font-size: 13px;
    color: #374151;
    margin-top: 2px;
}

/* Raw debug (not usually shown) */
.auvate-raw pre{
    white-space: pre-wrap;
    background: #f9fafb;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

/* Fix: ensure field is always type-able even with theme overlays */
#auvate-mnp-form input[type="text"]{
    position: relative !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

/* Wrapper atop theme overlays */
.auvate-mnp-wrapper,
.auvate-mnp-form,
.auvate-row{
    position: relative;
    z-index: 9998;
}
