.success-section{
    padding:60px 0;
    background:#f5f7fa;
    min-height:80vh;
}

.success-card{
    max-width:900px;
    margin:auto;
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    padding:40px;
}

.success-header{
    text-align:center;
    border-bottom:2px solid #008753;
    padding-bottom:20px;
    margin-bottom:30px;
}

.success-header img{
    width:90px;
    margin-bottom:10px;
}

.success-header h2{
    color:#008753;
    margin:5px 0;
}

.success-header h4{
    color:#666;
    font-weight:500;
}

.success-icon{
    text-align:center;
    font-size:70px;
    color:#16a34a;
}

.success-title{
    text-align:center;
    margin:10px 0;
}

.success-text{
    text-align:center;
    color:#666;
    margin-bottom:30px;
}

.success-body{
    display:flex;
    gap:30px;
    align-items:flex-start;
}

.passport-box{
    width:180px;
}

.passport-box img{
    width:100%;
    border:3px solid #008753;
    border-radius:10px;
}

.details-box{
    flex:1;
}

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

.details-box th,
.details-box td{
    padding:12px;
    border:1px solid #ddd;
    text-align:left;
}

.details-box th{
    width:220px;
    background:#f8f8f8;
}

.status-pending{
    background:#fff3cd;
    color:#856404;
    padding:5px 10px;
    border-radius:20px;
}

.success-actions{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:40px;
    flex-wrap:wrap;
}

.btn-print,
.btn-home,
.btn-login{

    padding:14px 28px;

    border:none;

    border-radius:8px;

    color:#fff;

    text-decoration:none;

    cursor:pointer;

    font-weight:600;
}

.btn-print{
    background:#008753;
}

.btn-home{
    background:#2563eb;
}

.btn-login{
    background:#d97706;
}

/* PRINT */

@media print{

    header,
    footer,
    .top-bar,
    .success-actions{
        display:none !important;
    }

    .success-card{

        box-shadow:none;

        border:2px solid #000;

    }

    body{

        background:#fff;

    }

}