body {
    font-family: Arial, sans-serif;
    margin: 0 200px;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background-color: #ffffff;
}

.container {
    display: flex;
    gap: 20px;
}

.sidebar {
    width: 350px;
    text-align: center;
    position: sticky;
    top: 0;
    align-self: flex-start;
    padding-bottom: 20px;
}

.news-section {
    height: 250px; /* Adjust the height as needed */
    overflow-y: auto; /* Makes the section scrollable */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    text-align: left;
    margin: 0 10px;
}

.news-section ul {
    list-style-type:circle;
    padding: 10px;
    margin: 0;
}

.news-section li {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.news-section li strong {
    color: #000000; /* Highlight important text */
}

.profile-pic {
    width: 200px;
    height: 200px;
    padding: 0;
    margin-top: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.icon {
    color: #333;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.icon:hover {
    color: #007bff;
}

.main-content {
    flex: 1;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.about-me {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

h2 {
    font-size: 28px;
    margin-top: 30px;
    text-align: center;
}

.affiliations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.affiliation {
    text-align: center;
    font-size: 14px;
}

.affiliation img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

p {
    
    font-size: 13px;
}

/* Navbar Styles */
.navbar {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    color: black;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

.navbar ul li a:hover {
    background-color: #000000;
    color: white;
    border-radius: 4px;
}

/* Work Experience*/
.work-experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.card .date {
    font-size: 14px;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.card ul {
    list-style: disc;
    margin: 0;
    padding-left: 20px;
}

.card ul li {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 8px;
}

.card ul li strong {
    color: #000;
}

.card a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.card a:hover {
    color: #0056b3;
}

/* Projects */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.project-card .github-link {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.project-card .github-link:hover {
    color: #007bff;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15);
}

/* Publications */
#publications {
    padding: 20px;
    font-family: Arial, sans-serif;
}

.publication-list {
    margin-top: 20px;
}

.publication-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.publication-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.publication-item p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.publication-details {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.status-box {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    color: #fff;
    text-align: center;
}

.status-box.green {
    background-color: #28a745; /* Published */
}

.status-box.purple {
    background-color: #6f42c1; /* Accepted */
}

.status-box.yellow {
    background-color: #ffc107; /* In Review */
}

.publication-link {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.publication-link:hover {
    text-decoration: underline;
}

.note {
    font-size: 12px;
    color: #555;
    margin-left: 10px;
}

/* Footer Styles */
.footer {
    margin: 0;
    position: sticky;
    bottom: 0;
    background-color: #706f6f;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

