.pj-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #f5f7fa;
    padding: 30px;
}

.pj-left, .pj-right {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.pj-qr {
    width: 200px;
    display: block;
    margin: auto;
}

#pj-show-form {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}


#pj-form input {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}

.pj-donor {
    background: #eef;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 6px;
}

.pj-file-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.pj-right button{
        background: #0d6efd;
    color: #fff;
    border: none;
}

#pj-file-btn {
    border: 2px dashed #c7d2fe !important;
        color: #4f46e5;
        background: #fff !important;
    padding: 8px 12px;
    border-radius: 6px;
  
    cursor: pointer;
}

#pj-file-name {
    font-size: 14px;
    color: #334155;
}

#pj-file-remove {
    color: red;
    cursor: pointer;
    font-weight: bold;
    display: none;
}
.pj-success-msg {
    margin-top: 15px;
    padding: 12px;
    background: #dcfce7;
    color: #166534;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

/* LEFT SECTION */
.pj-left {
    background: linear-gradient(135deg, #1e293b, #020617);
    color: #fff;
    border-radius: 16px;
    padding: 25px;
}

.pj-left-header h2 {
    font-size: 22px;
    margin-bottom: 5px;
    color: white ;
}

.pj-left-header p {
    font-size: 14px;
    opacity: .85;
    margin-bottom: 20px;
}

/* DONOR BOX */
.pj-donor-box {
    height: 280px;
    overflow: hidden;
    background: rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 10px;
    position: relative;
}

/* AUTO SCROLL */
.pj-donor-track {
    animation: pjScroll 15s linear infinite;
}

@keyframes pjScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* DONOR CARD */
.pj-donor-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 10px;
    transition: all .3s ease;
}

.pj-donor-card:hover {
    background: rgba(255,255,255,.2);
    transform: translateX(4px);
}

/* AVATAR */
.pj-donor-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #020617;
}

/* INFO */
.pj-donor-info strong {
    display: block;
    font-size: 14px;
}

.pj-donor-info span {
    font-size: 12px;
    opacity: .8;
}
.pj-donor-box:hover .pj-donor-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .pj-right {
        order: 1;
    }

    .pj-left {
        order: 2;
    }
}
@media (max-width: 992px) {
    .pj-wrapper {
        grid-template-columns: 1fr;
        padding: 25px;
    }
}
@media (max-width: 576px) {
    .pj-wrapper {
        gap: 20px;
        padding: 15px;
    }

    .pj-left,
    .pj-right {
        border-radius: 14px;
    }
}
.pj-file-preview{
     margin-bottom: 10px;
    /* margin-top: 10px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 12px;
    background: #f5f7fa;
    border-radius: 6px;
    font-size: 14px;
   
}

.pj-captcha {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}
.pj-payment-box{
    text-align: center;
}
.pj-no-donor{
    text-align: center;
        margin-top: 50px;
}

.warn_block{
    display: flex;
    /* column-gap: 10px; */
    justify-content: center;
}

.warn_image img{
    max-width: 100px;
}

.warn_text{
        margin-top: 20px;
}



