/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #005867;
  background-image: url('../images/reviewimages/som/nabusbackground.png');
	background-position: center top;
	background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 100%;
  width:100%;
  font-size: 18px;
  font-family: Verdana, Geneva, sans-serif;
  margin: 0;
}


p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

hr {
  border: solid #c7b591;
  border-width: 2px 0 0 0;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .small {
    max-width: 60%;
    height: auto;
  }
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

a:hover { 
  background-color: #fff6e6;
}

a:link {
    color: #157C7C;

  }
a:hover {
    color: #567070;
  }
a:visited {
    color: #567070;
  }


h1, h2, h3, h4, h5 {
  font-family: Tahoma, Geneva, sans-serif;
  color: #1C363A;
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
	max-width: 700px;
	background-color: #f1e3c9;
  color: #151515; 
  outline-color: #13303F;
  outline-style: ridge;
  outline-width: 4px;
  outline-offset: 0;
}

#content {
  padding: 10px 5% 20px 5%;
}
/*table styling*/
#frontpage {
  border: 2pt solid #13303F;
  border-style: dotted;
  background-color: #D9BEB5;
  text-align: center;
  margin: 0px auto;
  border-collapse:collapse;
}

#frontpage td {
  border: 2pt solid #473939;
  border-style: dotted;
  padding: none;
  border-collapse:collapse;
}
/*HEADER STYLE*/
#header {
  background-color: #774E4D;
  padding: 0 5%;
  border-color: #473939;
  border-style: ridge;
  border-width: 0 0 4px 0;
}
#header ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 0;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}
#header li a {
  color: white;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
}

/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
#recentpostlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
}

/*
  Go through zlNavboxes.js and zlNavboxes.html if you haven't done so yet!

  HOW TO COPY:

  Paste the following style sheet in the place most convenient for your css.
  Generally, the bottom of the file will work.
  
*/

/* navboxes */
ul.commaList {
  & li + li:before {
  
    content: ", ";
  }
  & li, ul {
    display:contents;
  }
}

.navbox {
  margin-top: 4em;
  margin-bottom: 2em;
  border-collapse: collapse;
  border: 2px ridge #913914;
  outline-width: 4px;
  max-width: 500px;

  & li + li:before {
  
    content: ", ";
  }
  & li, ul {
    display:contents;
  }
  & a:link {
    color: #168282;

  }
  & a:hover {
    color: #567070;
  }
  & a:visited {
    color: #567070;
  }

  & th, thead {
    background-color: #B0B369;
    color: white;
    border: 2px solid #4A4529;
  }
  & tr {
    border: 2px solid #4A4529;
  }
  & td {
    background-color: #D9CDB5;
  }
}

col#gotyTABLE { width: 67%; }

@font-face { font-family: Papyrus; src: url('../style/Papyrus-Font.ttf'); } 


/* bluesky comments 

thank you florianschepp i just kinda copied ur css from ur blog lol -ryoma
*/
.bsky-container {
    max-height: 67vh;
    margin-top: 4em;
    background: #C2A7BB;
    border: 1px solid #262626;
    padding: 1rem 1.5rem;
    overflow:scroll;
    overflow-x:auto;
    overflow-y:auto;
    
    /*box-shadow: inset 0 -3em 3em rgb(0 200 0 / 30%), 0 0 0 2px white, 0.3em 0.3em 1em rgb(200 0 0 / 60%);*/
}


.bsky-header {
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    display:flex;
    font-weight: bold;
    
}


.bsky-avatar {
    border-radius: 999px;
    flex-shrink: 0;
    width: 3rem;
    height:3rem
}

.bsky-avatar-placeholder {
    background: #404040;
    border-radius: 999px;
    flex-shrink: 0;
    width: 3rem;
    height:3rem
}

.bsky-comment {
    border-left: 2px solid #404040;
    margin-bottom: 1rem;
    padding-left:1rem
}

.bsky-replies .bsky-comment {
    margin-top: .75rem;
    margin-bottom: 0;
    margin-left:1rem;
}

.bsky-comment-header {
    align-items: flex-start;
    gap: .75rem;
    display:flex;
}
