/*
    ADDITIONAL DEMO STYLE, NOT IMPORTANT TO MAKE THINGS WORK BUT TO MAKE IT A BIT NICER :)
*/
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";


html {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    font-weight: 300;
    line-height: 1.7em;
}

.bg-kdab-blue {
    background-color: rgb(0, 119, 200) !important;
}
.nobull {
    list-style-type: none;
}
.disabled {
    /* Make the disabled items grayish*/
    color: gray;
 }

.huge-warning-icon {
    color: rgb(200,10,10);
    font-size: 180px;
}
img.img-jpegphoto:hover {
    width:  auto;
    height: auto;
}

/* Sidebar */
#sidebar {
  min-width: 250px;
  max-width: 250px;
  position: fixed;
}
#sidebar.active {
  margin-left: -250px;
}
.sidebar-footer {
    text-align: center;
    font-size: smaller;
}
.sidebar-footer a {
    text-decoration: underline !important;
}

@media (min-width: 768px) {
    #sidebar {
        width: 250px;
        position: fixed;
        top: 56px;
        height: 100vh;
        background: rgb(0, 119, 200);
    }
    .content {
        margin-left: 260px;
    }
}
.navbar {
    background: rgb(0, 119, 200) !important;
    position: fixed;
    width: 100%;
    z-index: 999;
}
.nav-link {
    color: white !important;
}
a[data-toggle="collapse"] {
  position: relative;
}
.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.content {
    padding-top: 56px;
    padding-left: 1rem;
    padding-right: 1rem;
}

a {
    color: rgb(0, 119, 200);
}

/* Container for pages that grow unlimited in width, but shouldn't */
.page-box {
    max-width: 800px;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.7em;
    color: #222;
    max-width: 800px;
}

#sidebar {
    /* don't forget to add all the previously mentioned styles here too */
    background: rgb(0, 119, 200);
    color: #fff;
    z-index: 1000;
}

#sidebar a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
}

/* Animate focus fade */
#sidebar a:hover, a:focus {
    transition: all 0.5s;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: rgb(0, 101, 180);
}

#sidebar ul.components {
    padding: 5px 0;
    border-top: 1px solid rgb(0, 101, 180);
    border-bottom: 1px solid rgb(0, 101, 180);
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: rgb(0, 101, 180);
    background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: rgb(0, 119, 200);
}

/* Ever so slightly highlight an element */
.emphasize {
    filter: brightness(105%);
}

.detail-view {
    word-wrap: break-word;
}

.flex-container {
    display: flex;
    align-items: center;
    gap: 2em;
    justify-content: space-between;
  }
