/* ==========================================
   Port Pro Academy Training Verification Portal
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background:#f5f7fb;
    color:#1f2937;

}

.ppa-verification-page{

    min-height:100vh;

    padding:60px 20px;

}

.ppa-container{

    max-width:1000px;

    margin:auto;

}

.ppa-header{

    text-align:center;

    margin-bottom:40px;

}

.ppa-header h1{

    font-size:36px;

    color:#0f172a;

    font-weight:700;

    margin-bottom:12px;

}

.ppa-header p{

    font-size:18px;

    color:#64748b;

    line-height:1.6;

}

.ppa-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

}

.ppa-card h2{

    font-size:28px;
    font-weight:700;
    text-align:center;
    color:#0f172a;
    margin-bottom:12px;

}

.ppa-description{

    text-align:center;

    color:#64748b;

    margin-bottom:30px;

}

.ppa-search-types{

    display:flex;

    gap:12px;

    justify-content:center;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.search-type{

    flex:1;
    min-width:220px;
    height:56px;

    background:#ffffff;
    border:2px solid #d7e3f4;

    color:#1e5aa8;

    font-size:16px;
    font-weight:600;
    text-transform:uppercase;

    border-radius:12px;

    cursor:pointer;

    transition:0.25s;

}

.search-type:hover{

    border-color:#2563eb;

}

.search-type.active{

    background:#1e5aa8;
    border-color:#1e5aa8;
    color:#ffffff;

}

.ppa-search-box{

    display:flex;

    gap:15px;

    margin-bottom:25px;

}

#searchInput{

    flex:1;

    padding:15px 18px;

    border-radius:10px;

    border:2px solid #dbe4f0;

    font-size:16px;

    outline:none;

}

#searchInput:focus{

    border-color:#2563eb;

}

.ppa-search-button{

    background:#2563eb;

    color:white;

    border:none;

    border-radius:10px;

    padding:0 30px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.ppa-search-button:hover{

    background:#1d4ed8;

}

.ppa-privacy{

    background:#f8fafc;

    border-radius:12px;

    padding:18px;

    margin-top:20px;

}

.ppa-privacy strong{

    display:block;

    margin-bottom:8px;

}

.ppa-privacy p{

    color:#64748b;

    line-height:1.6;

}

.verification-card{

    margin-top:35px;

    background:white;

    border-radius:20px;

    padding:35px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

}

.verification-card h3{

    font-size:19px;
    font-weight:700;
    color:#0f172a;
    margin:20px 0 15px;

}

.verified-title{

    font-size:24px;
    font-weight:700;
    color:#16a34a;
    margin-bottom:20px;

}

.student-table{

    width:100%;
    border-collapse:collapse;
    margin-top:20px;
    margin-bottom:35px;

}

.student-table td{

    border:1px solid #e5e7eb;
    padding:18px;

}

/* Left Column (Field Name) */

.student-table td:first-child{

    width:28%;

    background:#eef4fb;

    font-weight:700;

    color:#1f2937;

}

/* Right Column (Data) */

.student-table td:last-child{

    width:72%;

    background:#ffffff;

}

.course-table th{

    background:#f8fafc;

    text-align:left;

}

.status-badge{

    background:#16a34a;

    color:white;

    padding:6px 14px;

    border-radius:20px;

    font-size:14px;

    font-weight:600;

}

.request-box{

    background:#f8fafc;

    border-left:5px solid #2563eb;

    padding:25px;

    border-radius:12px;

}

.request-box h3{

    margin-bottom:15px;

}

.request-box p{

    margin-bottom:15px;

    line-height:1.7;

}

.request-box ul{

    margin-left:20px;

}

.request-box li{

    margin-bottom:8px;

}

.loading,
.error-card{

    margin-top:35px;

    background:white;

    border-radius:20px;

    padding:30px;

    text-align:center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

}

.loading{

    color:#2563eb;

    font-weight:600;

}

@media (max-width:768px){

    .ppa-header h1{

        font-size:32px;

    }

    .ppa-search-box{

        flex-direction:column;

    }

    .ppa-search-button{

        width:100%;

        height:52px;

    }

    .course-table{

        display:block;

        overflow-x:auto;

    }

}