:root {
    --clr0: rgb(23, 23, 100);

}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgba(0,0,0,0.075);

}

header {
    background: var(--clr0);
    color: rgba(255,255,255,0.5);
    padding: 0 2rem;
    padding-bottom: 0.25rem;
    display: flex;
    align-items: flex-end;
    /* margin-bottom: 2rem;*/
}

header p {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
}

header span {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

#navbar {
    background: rgb(155, 155, 219);
}

h1, h2, h3 {
    color: rgb(23, 23, 100);
    
}

.btn-primary {
    background: rgb(23, 23, 100);
}
.btn-outline-primary {
    --bs-btn-color: rgb(23, 23, 100);
    --bs-btn-border-color: rgb(23, 23, 100);
    --bs-btn-hover-bg: rgb(23, 23, 100);
    --bs-btn-hover-border-color: rgb(23, 23, 100);
}

.breadcrumb {
    background: lightgrey; 
    padding: 0.5rem 2rem;
}


.titlebox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.whitebox {
    background: white;
    border-radius: 5px;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.25);
    padding: 2rem;
}

.visitor_tag {
    font-size: 0.25;
    border: 1px solid black;
    padding: 0 0.125rem;
}


/* detail sidebar */ 

.sidebar {
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #f1f1f1;
    position: fixed;
    height: 100%;
    overflow: auto;
  }
  
  .sidebar a {
    display: block;
    color: black;
    padding: 16px;
    text-decoration: none;
  }
   
  .sidebar a.active {
    background-color: var(--clr0);
    color: white;
  }
  
  .sidebar a:hover:not(.active) {
    background-color: #555;
    color: white;
  }

  .detail-content {
    margin-left: calc(200px + 1rem);
  }

  @media screen and (max-width: 700px) {
    .sidebar {
      width: 100%;
      height: auto;
      position: relative;
    }
    .sidebar a {float: left;}
    .detail-content {margin-left: 0;}
  }
  
  @media screen and (max-width: 400px) {
    .sidebar a {
      text-align: center;
      float: none;
    }
  }
  
    
/* TAGS */

.tags {
  --tag_color: rgb(255, 255, 255);
  --tag_bgcolor: rgb(0,255,255);
  background: var(--tag_bgcolor);
  color: var(--tag_color);
  box-shadow: 0 2px 5px gray;
  border-radius: 7px;
  font-size: 0.8rem;
  padding: 3px 10px;
  display: flex;
  justify-content: center;
}