::selection {
    color: #5083b7;
    background-color: #d4e3f5;
}

body {
    position: relative;
}

p, a, li, .font-bellota {
  font-family: "Bellota Text", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
}
h1, h2, h3, h4, .font-bellota-bold {
  font-family: "Bellota Text", sans-serif;
  font-weight: 700;
  font-style: normal;
}
h1, h2, h3, h4 {
    color: #5083b7;
}

header {
    position: absolute;
    display: flex;
    top: 0;
    width: 100%;
}
header ul {
    list-style: none;
    margin-top: 30px;
}
header li {
    float: left;
    margin-right: 20px;
}
header li a {
    padding: 10px;
    font-size: 20px;
}
aside {
    position: fixed;
    top: 85px;
    left: 0;
    width: 300px;
    font-size: large;
    padding-top: 15px;
}
aside li {
    margin-bottom: 5px;
}
aside li a {
    padding: 8px;
}
main {
    position: absolute;
    top: 85px;
    left: 310px;
    width: 700px;
}

quote {
    font-style: italic;
    border-left: 3px solid green;
    display: block;
    padding: 10px 0 10px 10px;
    border-radius: 5px;
    background-color: #ebffdc;
    margin-bottom: 4px;
}


a {
    color: #910191; /*#bf568b;*/
    text-decoration: none;
}

.sidebar-category.active {
    background-color: #ebffdc;
    border-bottom: 2px solid #87f587;
    border-radius: 7px;
}

legend {
    padding: 5px;
    border-radius: 5px;
}
legend.danger { 
    background-color: #ffc1c1;
    color: red;
}
legend.success { 
    background-color: #d2f9de; 
    color: green;
}

pre:has(code) {
    white-space: normal;
    position: relative;
    margin-top: 0;
} 
pre legend {
    position: absolute;
    top: 7px;
    right: 7px;
}
pre code {
    white-space: pre;
}
samp {
    display: inline-block;
    font-size: large;
    color: green;
    margin: 0;
}
mark {
    color: red;
}

.d-flex {
    display: flex;
}
.d-flex-around {
    display: flex;
    justify-content: space-around;
}
p.center {
    text-align: center;
}

div.card {
    position: relative;
    border: 1px solid #d4e3f5;
    border-radius: 15px;
    padding: 20px;
    background-color: rgb(223 233 245 / 50%);
    width: 100%;
    margin: 10px;
}

.mb-2 {
    margin-bottom: 4px;
}

/* TABS */
.tabs ul { 
    list-style: none; 
    padding-left: 0;
    margin: 0;
}
.tabs li {
    display: inline-block;
    padding: 10px;
    border: 1px solid #d4e3f5;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.tabs li:not(.active) {
    cursor: pointer;
}
.tabs li.active {
    border-left: 1px solid #87f587;
    border-top: 2px solid #87f587;
    border-right: 1px solid #87f587;
    border-bottom: none;
    background-color: #ebffdc;
    color: green;
}
.tab:not(.active) {
    display: none;
}
