/* Researcher Theme Stylesheet */

/* General and Layout */
/* General and Layout */
body {
  font-family: 'Spectral', serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
}
/* Headings and Links */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Spectral', serif;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600; /* For semi-bold titles */
}

.wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
.site-header {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}

.site-header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #800020; 
}

.site-nav {
  margin-top: 5px;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 15px;
}

.page-link {
  text-decoration: none;
  color: #800020; 
  font-size: 16px;
  text-transform: uppercase;
}

/* Content Area */
.page-content {
  padding-top: 30px;
  padding-bottom: 30px;
}

a {
  color: #800020; 
  text-decoration: none;
}

a:hover {
  color: #800020; 
  font-weight: bold;
}

.site-nav .nav-list .active a {
  color: #fff; 
  font-weight: bolder;
  background-color: #800020;
  padding: 5px 10px;
  border-radius: 12px;
  text-shadow: 2px 2px 4px #000000;
}

/* Two-Column Layout */
.two-column {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
}

.left-column {
    flex: 1;
    min-width: 200px; /* Ensures the column doesn't get too small on mobile */
}

.right-column {
    flex: 2;
}

/* Image Styling */
.profile-picture {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

p.dotted {border-style: dotted;}
p.dashed {border-style: dashed;}
p.solid {border-style: solid;}
p.double {border-style: double;}
p.groove {border-style: groove;}
p.ridge {border-style: ridge;}
p.inset {border-style: inset;}
p.outset {border-style: outset;}
p.none {
  border-style: none;
  background-color: #800020;
  color: #fff;
  padding: 5px 10px;
  text-shadow: 2px 2px 4px #000000;
}
p.hidden {border-style: hidden;}
p.mix {border-style: dotted dashed solid double;}

.toggle-icon {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s ease;
    float: right;
}