* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

body {
    background-image: url("images/bgpinetrees.gif");
    background-repeat: repeat;
    font-size: 13px;
    line-height: 1.5em;
    
}

a {     
    color: inherit;
}

a:hover {
    font-style: italic;      
    color: inherit;          
}


.banner {
    width: 1200px;
    margin: 30px auto 15px auto;
    border: 4px solid rgb(179, 180, 185);
}

.banner img {
    width: 100%;
    display: block;
}

.layout {
    width: 1200px;
    margin: 0 auto 40px auto;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.main-content {
    flex: 1;
    background: whitesmoke;
    padding: 20px;
    border: 4px solid rgb(179, 180, 185);
}

.sidebar {
    width: 190px;
}

.left {
    background: whitesmoke;
    padding: 20px;
    border: 4px solid rgb(179, 180, 185);
}


.left li {
    margin-bottom: 8px;
    list-style: none;
}

.left li:last-child {
    margin-bottom: 0;
}

.right .box {
    background: whitesmoke;
    padding: 20px;
    margin-bottom: 15px;
    border: 4px solid rgb(179, 180, 185);
}

.text-separator {
  border: none;
  border-top: 1px solid rgb(179, 180, 185);
  margin: 12.5px 0px ;
  
}

.small-text {
  font-size: 0.9em;
  opacity: 0.7;
}

.image-float {
    float: right;
    margin: 0 0 15px 15px;
    width: 307px;
}

.character-box {
    float: right;
    width: 260px;
    background: whitesmoke;
    border: 4px solid rgb(179, 180, 185);
    margin: 0 0 20px 20px;
    font-size: 0.95em;
}

.char-name {
    text-align: center;
    font-weight: bold;
    padding: 8px;
    border-bottom: 1px solid rgb(179, 180, 185);
    background: #e8e8e8;
}

.char-row:last-of-type {
    border-bottom: none;
}
    
.char-image {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgb(179, 180, 185);
}

.char-section {
    text-align: center;
    font-weight: bold;
    padding: 6px;
    border-bottom: 1px solid rgb(179, 180, 185);
    background: #e8e8e8;
}

.char-row {
    display: flex;
    border-bottom: 1px solid rgb(179, 180, 185);
}

.char-label {
    width: 36%;
    padding: 6px 8px;
    font-weight: bold;
    border-right: 1px solid rgb(179, 180, 185);
    background: #e8e8e8;
}

.char-value {
    width: 64%;
    padding: 6px 8px;
}

.quote-block {
  text-align: center;
  margin: 30px auto;
  max-width: 100%;
}

.quote-block p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4em;
  margin: 6px 0;
}

.quote-author {
  display: block;
  margin-top: 6px;
  font-size: 0.8em;     
  opacity: 0.8;         
  text-align: right;   
  font-weight: normal;
}

.flag {
  width: 13px;
}

.stamp {
  width: 69px;
}

.button {
  width: 69px;
}

.blinkie {
  width: 138px;
}

.image-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;             
  margin: 20px auto;
  border: 3px solid rgb(179, 180, 185);             
  box-sizing: border-box;
}

.image-grid-4 a {
  display: block;           
  overflow: hidden;
  border: 1px solid rgb(179, 180, 185);          
  box-sizing: border-box;
}

.image-grid-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-grid-4 a {
  position: relative;
}

.image-grid-4 .img-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 8px;
  font-size: 11px;
  text-align: left;
  opacity: 0;
  transition: opacity 0s;
  font-style: normal;      
}

.image-grid-4 a:hover .img-info {
  opacity: 1;
}

.status {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0 0;
}

.collapsible {
  border: 2px solid rgb(179, 180, 185);
  width: auto;
}

.collapsible summary {
  list-style: none;
  cursor: pointer;
  padding: 7px 13px;
  background-color: #e8e8e8; 
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.collapsible summary::-webkit-details-marker {
  display: none;
}

.collapsible .arrow {
  transition: none;
}

.collapsible[open] .arrow {
  transform: rotate(90deg);
}

.collapsible .content {
  padding: 20px;
  border-top: 2px solid rgb(179, 180, 185);
  text-align: left;
}

.tracker-box {
    border: 1px solid rgb(179, 180, 185);
    font-size: 10px;
    background-color: whitesmoke;
    width: fit-content;
    max-width: 100%;  
}

.tracker-box.float {
    float: left;            
    margin: 0 20px 20px 0;
}

table {
    border-collapse: collapse;
}

th,
td {
    border: 1px solid rgb(179, 180, 185);
    padding: 5px;
    text-align: center;
    min-width: 50px;
   
}

thead th,
tbody th {
    background-color: #e8e8e8;
    font-weight: normal;
}

td.active::after {
    content: "X";
}

.scrollbar {
  width: 100%;
  border: 2px solid rgb(179, 180, 185);
  box-sizing: border-box;
  max-height: 260px;          
  overflow-y: auto;
  background: whitesmoke;
}

.scrollbar-item {
  padding: 12px 16px;


  border-bottom: 1px solid rgb(179, 180, 185);
}

.scrollbar-item:last-child {
  border-bottom: none;
}