/* Basic styling for academic website */
body {
    font-family: Times New Roman, Times, serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #FDF6E8;
    color: #333;
}

/* Header styling to match reference */
.header-title {
    color: #00008B;
    font-size: 28px;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 0px;
}

.header-subtitle {
    color: #00008B;
    font-size: 24px;
    margin-top: 5px;
    font-weight: bold;
}

.header-welcome {
    color: #FF0000;
    font-size: 20px;
    margin-top: 15px;
    font-weight: bold;
}

/* Introduction styling */
.introduction {
    background-color: #f8f2e2;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 25px;
}

.introduction h2 {
    color: #00008B;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-top: 0;
}

.introduction p {
    text-align: justify;
    margin-bottom: 15px;
}

.introduction a {
    font-weight: bold;
    color: #0066cc;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 24px;

}

h2 {
    font-size: 20px;
    padding-bottom: 5px;
    margin-top: 20px;
}

h3 {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 5px;
}

p {
    margin: 10px 0;
}

ol, ul {
    margin-top: 5px;
    margin-bottom: 15px;
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
}

.sidebar {
    background-color: #f8f2e2;
    padding: 15px;
    border-left: 1px solid #ddd;
}

.sidebar h3 {
    margin-top: 15px;
    margin-bottom: 8px;
}

.sidebar ul {
    padding-left: 20px;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

/* Table styling */
table {
    border-collapse: collapse;
}

td {
    vertical-align: top;
    padding: 10px;
}

/* Footer styling */
footer {
    font-size: 12px;
    text-align: center;
    margin-top: 30px;
    padding: 10px;
    border-top: 1px solid #ddd;
}

/* Publication styling */
ol li em {
    font-style: italic;
}

/* Publication item styling */
.publication {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.publication h3 {
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Research project styling */
.research-project {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.research-project h3 {
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Conference styling */
.conference {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.conference h3 {
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Workshop styling */
.workshop {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.workshop h3 {
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Webinar styling */
.webinar {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.webinar h3 {
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Education item styling */
.education-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.education-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    table, tr, td {
        display: block;
        width: 100% !important;
    }
    
    td {
        padding: 5px 10px;
    }
    
    .sidebar {
        border-left: none;
        border-top: 1px solid #ddd;
        margin-top: 20px;
    }
} 