/* next/last story navigation */
span#next_last {
  float: right;
  width: 67px;
  text-align: center;
  padding-left: 11px;
}
span#next_last a {
  color: var(--bg-hover);
}
span#next_last i.fa {
  font-size:1.0rem; 
  color: var(--bg-hover);
}
span#next_last i.fa-arrow-right {
}
span#next_last i.fa-random {
  font-size:2.5rem; 
  transform: rotate(90deg);
}

#iconbar {
  display: inline; 
  float: right;
  border-left: 3px solid lightgray;
  border-bottom: 3px solid lightgray;
  padding: 3px 0;
  border-radius: .7rem;
}
#iconbar img {
height: 20px;
width: auto;
padding: 0 7px;
}
#sidebar1 {
  border: solid 1px; /* testing */
  border-radius: 0 12px 12px 12px;
  font-size: 0.9em;
  font-weight: bold;
  padding: 10px;
  margin-left: 10px;
  }
#sidebar1::first-line {
  color: purple; /* testing */
}
#sidebar2 {
  border: solid 1px; /* testing */
  border-radius: 12px 0 12px 12px;
  font-size: 0.9em;
  font-weight: bold;
  padding: 10px;
  margin-right: 10px;
  }
#sidebar2::first-line {
  color: blue; /* testing */
}
/* make the margin relative */
.smalltext {font-size: small;}
.centered {text-align: center;}
/* works not; info hard-coded too */
#story_date {
  display: inline;
  font-variant: small-caps;
}
#story_text {
  background-color: white;
  text-decoration: underline;
}
FORM, FORM TABLE, INPUT {
margin: auto;
}

/* --------------- RESPONSIVE SCREEN AREAS ----------------=====+++++++++++++++++++++++----- */
/* --------------- MOBILE ----------------=================++++++++++++++++++++++++++++----- */
@media only screen and (max-width: 600px) {
  #next_last {
    }
  #sidebar1 {
    float: right;
    clear: right;
    width: 50%;
    }
  #sidebar2 {
    float: left;
    clear: left;
    width: 50%;
    }
  img.story_img_large {
    display: none;
    }
  img.story_img_large_icon, div.todayinhistory img { /* WORKING FOR NOW. Revisit. */
    display: block;
    width: 100%; 
    max-width: 100%; 
    max-height: 200px; 
    object-fit: cover;    
   }
  img.story_img_large { /* responsive rules added below */
    /* The same image, stretched large across the screen. see: https://darwinawards.com/darwin/darwin2010-07.html */
    /* NOT needed at all in the MOBILE. RECONSIDER in the DESKTOP. */
    display: block;
    width: 100%; /* max-width 75% behaved oddly for small sizes of text */
    max-width: 100%; /* max-width 75% behaved oddly for small sizes of text */
    }
  }
/* --------------- DESKTOP ----------------=================++++++++++++++++++++++++++++----- */
@media only screen and (min-width: 601px) {
  #next_last {
    padding-left: 22px; 
  }
  #sidebar1 {
    float: right;
    clear: right;
    width: 25%;
    }
  #sidebar2 {
    float: left;
    clear: left;
    width: 25%;
    }
  img.story_img_large_icon { /* WORKING FOR NOW. Revisit. */
    display: inline;
    float: right;
    max-width: 40%; /* max-width 75% behaved oddly for small sizes of text */
    }
  img.story_img_large { /* responsive rules added below */
    /* The same image, stretched large across the screen. see: https://darwinawards.com/darwin/darwin2010-07.html */
    /* NOT needed at all in the MOBILE. RECONSIDER in the DESKTOP. */
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 55%; /* max-width 75% behaved oddly for small sizes of text */
    }

  div#todayinhistory img {
    display: inline;
    float: right;
    max-width: 25%;
    }
  }

/* --------------- END RESPONSIVE SCREEN AREAS ----------------=====+++++++++++++++++++++++- */
