body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;

    background: #f5f5f5;

    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

.container {
    width: 1000px;
    margin: auto;

    background: white;

    border: 1px solid #ccc;

    box-shadow: 0 0 20px rgba(0,0,0,0.18);
}

/* HEADER */
.header {

    display: flex;
    align-items: center;

    padding: 20px 30px;

    background-image:
        linear-gradient(rgba(255,255,255,0.60),
        rgba(255,255,255,0.60)),
        url('background.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 2px solid #dcdcdc;
}

/* PROFILE PHOTO */
.header img {

    width: 190px;
    height: 230px;

    object-fit: cover;

    border-radius: 10px;

    border: 3px solid navy;

    box-shadow: 0 0 10px rgba(0,0,0,0.25);

    margin-right: 35px;
}


/* HEADER TEXT */
.title {

    flex: 1;

    text-align: center;
}

/* NAME */
.title h1 {

    margin-top: 0;
    margin-bottom: 20px;

    font-size: 52px;

    color: navy;

    letter-spacing: 1px;
}


/* DESIGNATION TEXT */
.title p {

    margin: 10px 0;

    font-size: 20px;

    color: #111;
}

/* SIDEBAR */
/* SIDEBAR */
.sidebar {
    width: 200px;
    float: left;

    background: #2f4f6f;

    min-height: 600px;
}

.sidebar a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: 0.3s;
}

.sidebar a:hover {
    background: #17324d;
    padding-left: 18px;
    transition: 0.3s;
}

/* MAIN CONTENT */
.content {
    margin-left: 210px;
    padding: 25px;
    text-align: justify;
    font-size: 16px;
    line-height: 1.7;
}

/* SECTION HEADINGS */
.content h2 {
    color: blue;
    font-size: 24px;
    border-bottom: 2px solid #d0d0d0;
    padding-bottom: 5px;
    margin-top: 35px;
}

/* PARAGRAPHS */
.content p {
    margin-bottom: 14px;
}

/* LISTS */
.content ul {
    margin-top: 10px;
    padding-left: 28px;
}

.content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* TABLES */
.student-table td,
.student-table th,
.phd-table td,
.phd-table th {
    text-align: center;
    vertical-align: middle;
}

/* ONLY Thesis Title column */
.phd-table td:nth-child(3) {
    text-align: justify;
    padding-left: 12px;
    padding-right: 12px;
    line-height: 1.5;
}

/* RESEARCH LIST */
.research-list {
    margin-top: 10px;
    line-height: 1.5;
    text-align: justify;
}

.research-list li {
    margin-bottom: 8px;
    padding-left: 5px;
}

/* LINKS */
.highlight-link .blue-part {
    color: blue;
    font-weight: bold;
}

.highlight-link .red-part {
    color: red;
    font-weight: bold;
}

.facility-list {

    margin-top: 15px;

    padding-left: 35px;

    line-height: 1.7;
}

.facility-list li {

    margin-bottom: 10px;

    text-align: justify;
}