body {
  background-color: #424242;
  background-image: url('../pics/empty_room.png');
  background-position: top;
  font-size: 18px;
  font-family: ms gothic;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-size: cover; 
  color: #000000;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
  flex-direction: column; 
}

.header-banner {
  display: block;          
  max-width: 1000px;
  width: auto;
  height: auto;
  margin: 0 auto 10px auto;  
  flex-shrink: 0;
}

.window {
  background-color: #242424;
  border: 3px outset #424242;
  width: 100%;
  max-width: 1000px;
  padding: 3px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  box-sizing: border-box;
  margin-bottom: 20px;
  max-height: 650px;
  
}

.content-area {
  display: flex;
  gap: 10px;
  padding: 10px;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
}

.panel-left {
  flex: 1;
  height: 100%;
  background-color: #f1e3c9;
  border: 2px inset #808080;
  padding: 12px;
  overflow-y: auto; 
  box-sizing: border-box;
  scrollbar-color: #424242 #f1e3c9; 
  scrollbar-width: auto;
}

.panel-right {
  width: 360px;
  height: 100%;
  flex-shrink: 0;
  background-color: #111111;
  border: 2px inset #808080;
  padding: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.panel-right img {
  max-width: 100%;
  max-height: 310px;
  border: 2px ridge #440a7f;
  object-fit: cover;
}

.panel-right img.gold {
  max-width: 100%;
  max-height: 310px;
  border: 2px ridge #a1a100;
  object-fit: cover;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.caption {
  color: #a1a100; 
  font-family: ms gothic;
  font-size: 11px;
  margin-top: 8px;
  text-align: center;
  display: block; 
}

.back-link {
  display: block;            
  text-align: center;
  color: #F20000;            
  text-shadow: 2px 2px #000;
  text-decoration: underline;
  margin-top: auto; 
  margin-bottom: 8px;
}

.back-link:hover {
  color: #003BFF;            
}

h1 {
  font-size: 15px;
  margin-top: 0;
  color: #000080;
  border-bottom: 2px dashed #808080;
  padding-bottom: 4px;
}

p {
  line-height: 1.4;
  margin-bottom: 12px;
}

.panel-left::-webkit-scrollbar {
  width: 16px;
}
.panel-left::-webkit-scrollbar-track {
  background: #f1e3c9;
  border-left: 1px solid #808080;
}
.panel-left::-webkit-scrollbar-thumb {
  background: #424242;
  border: 2px outset #ffffff;
}