/* Simple academic style - clean and minimal */

* {
    box-sizing: border-box;
}

#layout-content {
    max-width: 100%;
    overflow-x: hidden;
}

/* Simple table styling */
table.imgtable {
    margin-bottom: 30px;
    margin-top: 10px;
}

table.imgtable td {
    padding: 0 20px 0 0;
    vertical-align: middle;
}

table.imgtable td:first-child {
    padding-right: 30px;
}

table.imgtable img {
    border: 1px solid #ddd;
    padding: 3px;
}

/* Profile section spacing */
table.imgtable h1 {
    margin-top: 0;
    margin-bottom: 18px;
    line-height: 1.3;
}

table.imgtable p {
    line-height: 1.8;
    font-size: 1.05em;
    margin-top: 0;
}

/* Simple heading styles */
h2 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-top: 25px;
}

h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Simple publication list */
ol li {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Simple link style */
a {
    color: #0645ad;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Simple list style */
ul {
    line-height: 1.6;
}

ul li {
    margin-bottom: 8px;
}

/* Responsive design */
@media (max-width: 768px) {
    table.imgtable {
        display: block;
    }
    
    table.imgtable td {
        display: block;
        text-align: center;
    }
    
    table.imgtable img {
        margin: 0 auto 15px;
    }
}
