body {
  margin: 0;
  font-family: Garamond, serif;
  background: #f5f5f5;
}

.container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr 250px;
  height: 100vh;
  gap: 4px;
  padding: 4px;
  box-sizing: border-box;
}

.good-news{
  display: inline-flex;
  margin-top: 100px;
}

.right-column {
  display: flex;
  height : 100%;
}

.image img{
  display: inline-block;
  height: 300px;
  width: 200px;
  max-height: 300px;
  max-width: 200px;
  margin-top: 25px;
 margin-bottom: 25px;
}

.text-panel{
  display: flex;
  flex-direction: column;
  align-items: center; 
  list-style-type: none;
  border: 4px solid #001f3f;
  border-radius: 12px;
  box-shadow:
    0 0 0 2px #ffffff,   
    0 4px 10px rgba(0,0,0,0.2); 
  padding-bottom: 50px;
}

.active-verse {
  color: #ff0000;
}

.active-line {
  color: rgb(255, 0, 0);
}

.text-panel > * {
  max-width: 220px;   
  width: 100%;
}

.bad-news{
  color:red;
  font-size: 1.5em;
  margin-bottom: 200px;
}

.poem-panel h2{
  text-align:center;
  font-family: Garamond, serif;
}


.map-panel {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background: rgb(191, 241, 251);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 4px solid #001f3f;
  border-radius: 12px;
  box-shadow:
    0 0 0 2px #ffffff,   
    0 4px 10px rgba(0,0,0,0.2); 

}
.legend {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 180px;
  font-size: 12px;
}
.legend-title {
  margin-bottom: 5px;
  font-weight: bold;
}

.legend-bar{
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    #cfe8f3,
    #7fb3d5,
    #2874a6,
    #1b4f72,
    #0b2e59
  );
}

.legend-labels{
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.verse {
  list-style-type: none;
  padding: 0px;
  color: #000000;
  text-align:center;
}

#country-name {
  margin: 8px;
}

.info-panel {
  grid-column: 1 / 4;
  grid-row: 2 / 3;
  background: beige;
  /* border: 1px solid #ccc; */
  padding: 16px;
  overflow-y: auto;
  overflow-x:auto;
  min-width: 0;
  border: 4px solid #001f3f;
  border-radius: 12px;
  box-shadow:
    0 0 0 2px #ffffff,   
    0 4px 10px rgba(0,0,0,0.2); 
}



.poem-panel {
  background-color: beige;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3rem 3rem;
  overflow-y: hidden;
  border: 4px solid #001f3f;
  border-radius: 12px;
  box-shadow:
    0 0 0 2px #ffffff,   
    0 4px 10px rgba(0,0,0,0.2); 
  
}

.left-column-content {
  overflow-y: auto;
  height: 100%;       
  width: 100%;         
}

