/* https://www.fontshungry.com/beleren-font-family/ */
@font-face {
    font-family: notifiarrFont;
    src: url(../fonts/Beleren2016SmallCaps-Bold.ttf);
}

/* this is for a mac book 14 3 column instead of 4 column... f'n apple retina */
@media (min-resolution: 120dpi) and (min-width: 500px) {
    .integration-card-container .col-xl-3 {
        float: left;
        width: 33%;
    }
}

.text-notifiarr {
    font-family: notifiarrFont;
}

.small-text {
    font-size: small;
}

pre {
    padding: 1em;
    width: 100%;
    overflow: auto;
    overflow-y: hidden;
    font-size: 12px;
    line-height: 20px;
    background-color: #000;
    color: #fff;
    border: 1px solid #777;
}

/* updates page */
.updateUL {
    display: block;
    padding-bottom: 10px;
}

.updateUL::before{
    content: attr(aria-label);
    font-weight: bold;
    margin-left: -2em;
}

.updateLI {
    list-style: none;
    text-indent: -0.75em;
}

.updateLI::before {
    content: '\b7\a0';
}

/* media requests integration */
.lidarrButton {
    background: url('../images/logo/lidarr.png') no-repeat;
    background-position: center;
    background-color: var(--bs-btn-bg);
    background-size: 20px auto;
    width: 50px;
    height: 45px;
    position: relative;
}

.radarrButton {
    background: url('../images/logo/radarr.png') no-repeat;
    background-position: center;
    background-color: var(--bs-btn-bg);
    background-size: 20px auto;
    width: 50px;
    height: 45px;
    position: relative;
}

.readarrButton {
    background: url('../images/logo/readarr.png') no-repeat;
    background-position: center;
    background-color: var(--bs-btn-bg);
    background-size: 20px auto;
    width: 50px;
    height: 45px;
    position: relative;
}

.sonarrButton {
    background: url('../images/logo/sonarr.png') no-repeat;
    background-position: center;
    background-color: var(--bs-btn-bg);
    background-size: 20px auto;
    width: 50px;
    height: 45px;
    position: relative;
}

.details {
    top: 0;
    width: 100%;
    position: absolute;
    display: inline;
    z-index: 100;
}

.instance {
    top: -2px;
    left: 13px;
    display: inline;
    z-index: 101;
    position: absolute;
}

.indicator {
    left: 6px;
    margin-top: 6px;
    display: inline;
    z-index: 102;
    position: absolute;
    vertical-align: bottom;
}

.onlineIndicator {
  height: 12px;
  width: 12px;
  background-color: green;
  border-radius: 50%;
}

.offlineIndicator {
  height: 12px;
  width: 12px;
  background-color: orange;
  border-radius: 50%;
}

.top-margin-10 {
    margin-top: 10px;
}

.backdrop {
    color: #FFF;
    background-color: rgba(30, 34, 37, 0.95);
    border-radius: 10px;
}

.backdrop-text {
    color: #ffffff;
    font-weight: bold;
}

.sticky-bottom-right {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    padding: 1em;
}

.requestUIAddButton {
    margin-bottom: 2.5em;
}

@media screen and (max-width: 767px) {
    .requestUIAddButton {
        margin-bottom: 0.5em !important;
    }

    div.dataTables_info, div.dataTables_paginate {
        text-align: left !important;
    }

    li.paginate_button.previous {
        display: inline;
    }

    li.paginate_button.next {
        display: inline;
    }

    li.paginate_button {
        display: none;
    }
}

.status-up {
    background-color: green;
    display: inline;
    cursor: pointer;
}

.status-down {
    background-color: red;
    display: inline;
    cursor: pointer;
}

.eventViewer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 275px;
    z-index: 10;
    max-height: 175px;
}

.tdMiddleAlign > * {
    vertical-align: middle;
}

.truncate {
    width: 100% !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wrap {
    overflow-wrap: break-word;
}

.dangerBanner {
    padding: 10px;
    margin: 0 0 20px 0;
    background: #dd3d36;
    color: #fff;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
}

.successBanner {
    padding: 10px;
    margin: 0 0 20px 0;
    background: #5cb85c;
    color: #fff;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
}

.warningBanner {
    padding: 10px;
    margin: 0 0 20px 0;
    background: #ff9f0c;
    color: #000;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
}

/* Gridstack changes */
.grid-locked {
    border-color: red !important;
}

/* Bootstrap fixes */
.tooltip {
    pointer-events: none;
}