body {
	font-family: "Baskervville", serif;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0.4px;
	margin: 0 2em 1em 5em;
	width: 80rem;
}
.banner {
    width: 100%;
    height: 5rem;
    }
nav {
width: 100%;
clear: both;
}
ul#navBar {
  list-style-type: none;
  margin-top: -1rem;
  padding: 0;
  overflow: hidden;
  background-color: #3f6345;
  z-index: 3;
}

ul#navBar li {
  float: left;
}

ul#navBar li a {
    font-family: "Baskervville", serif;
	font-size: 20px;
	line-height: 26px;
	letter-spacing: 0.4px;
  display: block;
  color: white;
  text-align: center;
  /* inexplicably, the padding has to differ from the main 
   * css file navbar (LBdigEdPara.css) 
   * in order not to jump! Maybe something to do with the
   * drop-down boxes and javascript?*/
  padding: 22px 16px 14px 16px;
  text-decoration: none;
}

ul#navBar li a:hover {
  background-color: #06330e;
}
.active {
background-color: #06330e;
}
img.logo {
    height: 36px;
    width: 36px;
    position: absolute;
    top: 5.25rem;
    right: 5rem;
}
.main-container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 16rem);
    padding: 1rem 0;
}

.dropdown-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-container label {
    font-weight: bold;
    color: #3f6345;
    font-size: 0.9rem;
}

.dropdown-container select {
    padding: 0.5rem;
    font-size: 1rem;
    border: 2px solid #3f6345;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}

.dropdown-container select:hover {
    background-color: #f0f0f0;
}

.dropdown-container select:focus {
    outline: none;
    border-color: #06330e;
}

.edition-description {
    min-height: 4rem;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
    line-height: 1.4;
}

iframe {
    margin-top: -1rem;
    width: 100%;
    height: 50rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

ul.edMenu > li {
    display: inline;
}

ul.edMenu > li > strong {
    color: green;
    font-weight: bold;
    font-size: 125%;
}
a {
    text-decoration: none;
}
a:hover {
	color: #3f6345;
}
a:visited {
    color: #4f809c; 
}
.altNav {
    position: fixed;
    top: 0;
    right: 5rem;
}

.volumes {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.volumes li {
    margin: 0.25rem 0;
}

.volumes a {
    color: #3f6345;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    display: block;
    border-radius: 3px;
}

.volumes a:hover {
    background-color: #f0f0f0;
    color: #06330e;
}

h3 {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.5rem;
}

#label1 {
}
#label2 {
}

table.frames {
    width: 100%;
    border: none;
}

td {
    width: 50%;
}
.major {
    margin-top: -1rem;
    text-align: center;
}
/* Copy Link Button Styles */
.share-container {
    text-align: center;
    margin-bottom: 1rem;
}

.copy-btn {
    background-color: #3f6345; /* Matches your nav and borders */
    color: white;
    border: 2px solid #3f6345;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s, border-color 0.2s;
}

.copy-btn:hover {
    background-color: #06330e; /* Matches your hover states */
    border-color: #06330e;
}

.copy-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(63, 99, 69, 0.5); /* Subtle focus ring */
}

.copy-feedback {
    display: none;
    color: #06330e; /* Dark green for success text */
    margin-left: 10px;
    font-weight: bold;
    font-style: italic;
}