
body{
    font-family: Arial, sans-serif;
    background:#f5f7fa;
    margin:0;
}

.page-title{
    text-align:center;
	margin-top:50px;
	margin-bottom:-40px;
    padding:30px 15px;
}

.page-title h1{
    color:#0a4b78;
    margin:0;
}

.table-section{
    max-width:90%;
    margin:auto;
    padding:20px;
}

.table-responsive{
    overflow-x:auto;
    background:#fff;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

table{
    width:100%;
    border-collapse:collapse;
    min-width:900px;
}

thead{
    background:#0a4b78;
    color:white;
}

th,
td{
    padding:14px;
    border-bottom:1px solid #ddd;
    text-align:left;
}

tbody tr:hover{
    background:#f1f7ff;
}

.student-photo{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

.status{
    background:#28a745;
    color:white;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
}
.pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination a {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-decoration: none;
  color: black;
  margin: 0 2px;
  border-radius: 5px;
}

.pagination a.active {
  background-color: #4CAF50;
  color: white;
  border: 1px solid #4CAF50;
}

.pagination a:hover:not(.active) {
  background-color: #ddd;
}

@media(max-width:768px){

    .page-title h1{
        font-size:28px;
    }

    th,
    td{
        padding:10px;
        font-size:14px;
    }

}
