/* payment page*/
body{
    font-family: Arial, Helvetica, sans-serif;
    background:#f4f6f9;
    margin:0;
}
.container{
    max-width:700px;
    margin:50px auto;
    background:#fff;
    border-radius:8px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}
.header{
    background:#0b3c5d;
    color:#fff;
    padding:20px;
    border-radius:8px 8px 0 0;
}
.header h2{
    margin:0;
}
.content{
    padding:30px;
}
.row{
    display:flex;
    margin-bottom:15px;
}
.label{
    width:40%;
    font-weight:bold;
    color:#333;
}
.value{
    width:60%;
    color:#555;
}
.amount-box{
    background:#f1f7ff;
    padding:15px;
    border-left:4px solid #0b3c5d;
    margin-top:20px;
    font-size:18px;
}
.footer{
    text-align:center;
    padding:30px;
}
button{
    background:#0b3c5d;
    color:#fff;
    border:none;
    padding:12px 30px;
    font-size:16px;
    border-radius:4px;
    cursor:pointer;
    margin-left:80px;
     
}
button:hover{
    background:#092f48;
}
.secure{
    font-size:12px;
    color:#777;
    margin-top:10px;
    margin-left:60px;
}
/* terms section */
.terms-box{
margin-top:20px;
background:#f9fafc;
border:1px solid #e1e5ea;
padding:15px;
border-radius:6px;
font-size:13px;
}

.terms-box ul{
margin:8px 0 0 18px;
}

.agree{
margin-top:10px;
}

button:disabled{
background:#b5b5b5;
cursor:not-allowed;
}

.student-table{
width:100%;
border-collapse:collapse;
margin-bottom:20px;
}

.student-table td{
padding:10px 8px;
border-bottom:1px solid #eee;
font-size:15px;
}

.student-table td:first-child{
width:40%;
color:#333;
font-weight:600;
}

.student-table td:last-child{
color:#555;
}