*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background: #f5f5f5;
}

.container{
    width: 95%;
    max-width: 1400px;
    margin: auto;
    padding: 20px 0;
}

.title{
   background: #0a1c48;
    color: #fff;
    /* display: inline-block; */
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 600;
}

.table-responsive{
    width: 100%;
    overflow-x: auto;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.faculty-table{
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px;
    background: white;
}

.faculty-table th,
.faculty-table td{
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.faculty-table thead{
    background: #f0dcdc;
    font-weight: bold;
}

.photo-col img{
    width: 70px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 5px;
}

.photo-col p{
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

/* ---------- RESPONSIVE DESIGN ---------- */

@media(max-width: 768px){
    .title{
        text-align: center;
    }

    .faculty-table th,
    .faculty-table td{
        padding: 8px;
        font-size: 13px;
    }

    .photo-col img{
        width: 55px;
        height: 65px;
    }
}

@media(max-width: 480px){
    .faculty-table th,
    .faculty-table td{
        padding: 6px;
        font-size: 12px;
    }

    .title{
        font-size: 22px;
    }

    .photo-col img{
        width: 45px;
        height: 55px;
    }
}
