body,
#wrap,
#outer-wrap,
#main,
main.site-main,
.site-main{
    background:#f5f7fb !important;
}

.rtp-wrapper{
    max-width:900px;
    margin:40px auto;
    padding:15px;
}

.rtp-card{

    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    overflow:hidden;

}

.rtp-header{

    background:linear-gradient(135deg,#005bea,#00c6fb);
    padding:30px;
    text-align:center;
    color:#fff;

}

.rtp-header h2{

    margin:0;
    font-size:30px;

}

.rtp-header p{

    margin-top:8px;
    opacity:.9;

}

.rtp-body{

    padding:30px;

}

#rtp_pnr{

    width:100%;
    height:55px;
    border:2px solid #dfe7f3;
    border-radius:12px;
    padding:0 18px;
    font-size:18px;
    transition:.3s;

}

#rtp_pnr:focus{

    outline:none;
    border-color:#0d6efd;

}

#rtp_check_btn{

    width:100%;
    height:55px;
    margin-top:18px;
    border:none;
    border-radius:12px;
    background:#0d6efd;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;

}

#rtp_check_btn:hover{

    background:#0056d2;

}

#rtp_result{

    margin-top:25px;

}

.rtp-result-card{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    border:1px solid #eee;

}

.rtp-result-header{

    background:#f1f7ff;
    padding:18px;
    text-align:center;
    font-size:24px;
    font-weight:bold;
    color:#0d6efd;

}

.rtp-table{

    width:100%;
    border-collapse:collapse;

}

.rtp-table td,
.rtp-table th{

    padding:14px;
    border-bottom:1px solid #ececec;

}

.rtp-table th{

    background:#0d6efd;
    color:#fff;

}

.status-cnf{

    display:inline-block;
    padding:5px 12px;
    border-radius:20px;
    background:#16a34a;
    color:#fff;
    font-weight:bold;

}

.status-rac{

    display:inline-block;
    padding:5px 12px;
    border-radius:20px;
    background:#f59e0b;
    color:#fff;

}

.status-wl{

    display:inline-block;
    padding:5px 12px;
    border-radius:20px;
    background:#ef4444;
    color:#fff;

}

@media(max-width:768px){

.rtp-header h2{

font-size:22px;

}

.rtp-body{

padding:18px;

}

.rtp-table{

font-size:13px;

}

}

/* ===========================
   PNR Result Card
=========================== */

.rtp-card{
    margin-top:25px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    border:1px solid #e9ecef;
}

.rtp-card h2{
    margin:0;
    padding:18px;
    text-align:center;
    color:#fff;
    font-size:24px;
    background:linear-gradient(135deg,#1565C0,#0D47A1);
}

.rtp-card h3{
    margin:25px 0 15px;
    text-align:center;
    color:#333;
    font-size:22px;
}

.rtp-table{
    width:100%;
    border-collapse:collapse;
}

.rtp-table tr:nth-child(even){
    background:#f8f9fa;
}

.rtp-table td,
.rtp-table th{
    padding:14px;
    border-bottom:1px solid #eee;
}

.rtp-table td:first-child{
    width:180px;
    font-weight:700;
    color:#1565C0;
}

.rtp-table th{
    background:#1565C0;
    color:#fff;
    text-align:center;
}

.rtp-table td{
    text-align:center;
}

.status-cnf{
    display:inline-block;
    padding:6px 16px;
    border-radius:30px;
    background:#28a745;
    color:#fff;
    font-weight:700;
}

.status-rac{
    display:inline-block;
    padding:6px 16px;
    border-radius:30px;
    background:#ff9800;
    color:#fff;
    font-weight:700;
}

.status-wl{
    display:inline-block;
    padding:6px 16px;
    border-radius:30px;
    background:#dc3545;
    color:#fff;
    font-weight:700;
}

@media(max-width:768px){

.rtp-table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

.rtp-card{
margin-top:20px;
}

}



/* Loader */

#rtp_loader{
display:none;
text-align:center;
padding:30px;
}

.rtp-spinner{

width:60px;
height:60px;
margin:auto;
border:6px solid #ddd;
border-top:6px solid #0d6efd;
border-radius:50%;
animation:rtpspin 1s linear infinite;

}

@keyframes rtpspin{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

#rtp_loader p{

margin-top:15px;
font-size:18px;
font-weight:600;
color:#0d6efd;

}

#rtp_loader{
    display:none;
    text-align:center;
    padding:25px;
}

.rtp-spinner{
    width:55px;
    height:55px;
    border:5px solid #e5e5e5;
    border-top:5px solid #1565C0;
    border-radius:50%;
    margin:auto;
    animation:rtpSpin .8s linear infinite;
}

#rtp_loader p{
    margin-top:15px;
    font-size:16px;
    color:#1565C0;
    font-weight:600;
}

@keyframes rtpSpin{
    100%{
        transform:rotate(360deg);
    }
}