html {
    font-size: 14px;
    --ctx-blue: rgb(0, 82, 158);
    --ctx-yellow: rgb(255, 221, 0);
    --ctx-dkblue: rgb(0,61,119);

    --blueish: rgba(154, 208, 245, 70%);
    --blueish-border: rgba(54,162,235,70%);

}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

nav {
  background-color: var(--ctx-blue);
  color: white;
}

.dropdown-menu-dark {
  background-color: var(--ctx-dkblue);
}

.fullscreen {
    cursor:pointer;
}

.hoverable {
    position: relative;
}

.hoverable:hover {
    cursor: pointer;
    background-color: #f0f0f0; /* Example background color change */
}

.hoverable:hover .hidden-tooltip {
    display: block;
}

.hidden-tooltip {
    display: none;
    position: absolute;
    top: 50%;
    left: 90%;
    /* Adjust the position and style as needed */
    height: auto;
    width: 40vh;
    z-index: 5;
    background: white;
    border: 1px solid lightgrey;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.variant-preview-heading, .tooltip-heading {
    font-weight: bold;
    background-color: lightblue;
    background: linear-gradient(122deg,rgba(102, 178, 217, 0.67) 0%, rgba(110, 207, 224, 0.39) 50%, rgba(255, 255, 255, 1) 100%);
}

.variant-preview-image {
    height: calc(100% - 4em);
    margin-left: 2em;
}

.variantFixed {
    color: darkgreen;
}

.variantUser {
    color: lightcoral;
}

th, td {
    padding: 0.1em 0.5em;
}

tr {
    vertical-align: middle;
}

/* nav tabs */
.nav-tabs .nav-link {
    border-color: #3282d1 !important;
    margin-right: 0.2em;
}
.nav-tabs .nav-link.active {
    border-color: #3282d1 #3282d1 #fff;
    color: black;
    font-weight: bold;
}
.nav-tabs .nav-link:hover {
    border-color: #3282d1 #3282d1 #fff;
}