.wuv-form-container{
    width:100%;
    max-width:700px;
    margin: 40px auto;
    padding:0 !important;
    background:transparent;
    box-shadow:none;
    border:none;
    direction:rtl;
    font-family:'ShahkarFontregular', serif;
}

.wuv-form-header{
    margin-bottom:28px;
    text-align:right;
}

.wuv-form-header h2{
    margin:0;
    font-size:34px;
    font-weight:900;
    color:#0f172a;
    line-height:1.4;
    letter-spacing:-0.5px;
}

.wuv-form-header p{
    margin-top:8px;
    font-size:14px;
    color:#64748b;
    line-height:2;
}

#wuv-verification-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.wuv-form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.wuv-form-group label{
    font-size:14px;
    font-weight:700;
    color:#334155;
}

.wuv-form-group input[type="text"],
.wuv-form-group input[type="url"],
.wuv-form-group textarea,
.wuv-form-group select{
    width:100%;
    border:none;
    background:#ffffff;
    border-radius:14px;
    padding:14px 16px;
    font-size:14px;
    color:#0f172a;
    font-family:'ShahkarFontregular', serif;
    transition:.2s ease;
    box-sizing:border-box;
    box-shadow:
        0 1px 2px rgba(15,23,42,.03),
        0 0 0 1px rgba(15,23,42,.06);
}

.wuv-form-group textarea{
    min-height:100px;
    resize:vertical;
}

.wuv-form-group input:focus,
.wuv-form-group textarea:focus,
.wuv-form-group select:focus{
    outline:none;
    box-shadow:
        0 0 0 3px rgba(59,130,246,.10),
        0 0 0 1px #3b82f6;
}

.wuv-form-group input:disabled{
    background:#f1f5f9;
    color:#94a3b8;
}

.wuv-radio-grid{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.wuv-radio-card{
    flex:1;
    min-width:120px;
    position:relative;
}

.wuv-radio-card input{
    display:none;
}

.wuv-radio-card span{
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#ffffff;
    font-size:13px;
    font-weight:700;
    color:#475569;
    cursor:pointer;
    transition:.2s ease;
    box-shadow:
        0 1px 2px rgba(15,23,42,.03),
        0 0 0 1px rgba(15,23,42,.06);
}
.redstar{
	color: red !important;
}
.wuv-radio-card input:checked + span{
    background:#eff6ff;
    color:#2563eb;
    box-shadow:
        0 0 0 1px #3b82f6;
}

.wuv-form-group select{
    appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2364748b' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:left 14px center;
    padding-left:40px;
}

#wuv-submit-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:14px;
    background:#2563eb;
    color:#ffffff;
    font-size:15px;
    font-weight:800;
    font-family:'ShahkarFontregular', serif;
    cursor:pointer;
    transition:.2s ease;
    margin-top:6px;
}

#wuv-submit-btn:hover{
    background:#1d4ed8;
}

#wuv-submit-btn:active{
    transform:scale(.99);
}

#wuv-success-message{
    background:#ecfdf5;
    color:#166534;
    border:1px solid #bbf7d0;
    border-radius:14px;
    padding:14px;
    font-size:13px;
    line-height:2;
    text-align:center;
}

.wuv-status-card{
    border-radius:16px;
    padding:18px;
    font-size:14px;
    line-height:2;
    text-align:center;
}

.wuv-status-card h3{
    margin:0 0 8px;
    font-size:20px;
}

.wuv-pending-card{
    background:#fff7ed;
    color:#9a3412;
}

.wuv-verified-card{
    background:#ecfdf5;
    color:#065f46;
}

.wuv-rejected-card{
    background:#fef2f2;
    color:#991b1b;
}

.wuv-default-card{
    background:#f8fafc;
    color:#334155;
}

#wuv-channel-options select{
    max-width:100% !important;
}

@media(max-width:768px){

    .wuv-form-container{
        padding:0 16px;
        margin:0 auto;
    }

    .wuv-form-header h2{
        font-size:28px;
    }

    .wuv-radio-grid{
        flex-direction:column;
    }

    .wuv-radio-card{
        min-width:unset;
    }

}.wuv-helper-text{
    margin-top:8px;
    font-size:12px;
    color:#94a3b8;
}

.wuv-channel-card input:checked + span{
    background:#fff7ed;
    color:#ea580c;
    box-shadow:
        0 0 0 1px #fb923c;
}

.wuv-website-card input:checked + span{
    background:#eff6ff;
    color:#2563eb;
    box-shadow:
        0 0 0 1px #3b82f6;
}.wuv-channel-card input:checked + span,
.wuv-website-card input:checked + span{
    background:#fff7ed;
    color:#ea580c;
    box-shadow:
        0 0 0 1px #fb923c;
}
.wuv-option-block{
    width:100%;
}

.wuv-inline-field{
    margin-top:10px;
}

.wuv-inline-field input,
.wuv-inline-field select{
    margin-top:8px;
}

@media(min-width:769px){

    .wuv-option-block{
        flex:1;
    }

}

/* Channel checkbox list */
.wuv-channel-checkbox-list{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
    margin-top:10px;
	display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.wuv-channel-option{
    position:relative;
    display:block;
    cursor:pointer;
}

.wuv-channel-option input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.wuv-channel-option span{
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:14px;
    background:#fff;
    color:#475569;
    font-size:13px;
    font-weight:800;
    transition:.2s ease;
    box-shadow:
        0 1px 2px rgba(15,23,42,.03),
        0 0 0 1px rgba(15,23,42,.08);
}

.wuv-channel-option span:before{
    content:'';
    width:16px;
    height:16px;
    margin-left:8px;
    border-radius:5px;
    background:#f8fafc;
    box-shadow:0 0 0 1px rgba(15,23,42,.18);
    transition:.2s ease;
}

.wuv-channel-option input:checked + span{
    background:#fff7ed;
    color:#ea580c;
    box-shadow:
        0 0 0 1px #fb923c,
        0 10px 22px rgba(251,146,60,.14);
}

.wuv-channel-option input:checked + span:before{
    background:#ea580c;
    box-shadow:0 0 0 1px #ea580c;
}

.wuv-channel-option input:checked + span:after{
    content:'✓';
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    font-size:11px;
    font-weight:900;
}

.wuv-channel-option span
{
	    justify-content: start;
    padding-right: 15px;
}

@media(max-width:768px){
    .wuv-channel-checkbox-list{
        grid-template-columns:1fr;
    }
}

/* Inline validation errors — kept next to the field so they remain visible on mobile. */
.wuv-field-error{
    width:100%;
    box-sizing:border-box;
    margin-top:8px;
    padding:9px 11px;
    border-radius:10px;
    background:#fef2f2;
    border:1px solid #fecaca;
    color:#b91c1c;
    font-size:12px;
    font-weight:700;
    line-height:1.8;
    text-align:right;
}

.wuv-has-error > input[type="text"],
.wuv-has-error > input[type="url"],
.wuv-has-error > textarea,
.wuv-has-error > select,
.wuv-has-error .wuv-inline-field input[type="text"],
.wuv-has-error .wuv-inline-field input[type="url"]{
    box-shadow:0 0 0 1px #dc2626 !important;
}

#wuv-page-options.wuv-has-error > .wuv-radio-grid .wuv-radio-card span{
    box-shadow:0 0 0 1px #dc2626;
}

#wuv-channel-options.wuv-has-error .wuv-channel-option span{
    box-shadow:0 0 0 1px #dc2626;
}

@media(max-width:768px){
    .wuv-field-error{
        font-size:12px;
        padding:9px 10px;
    }
}
