:root {
    --header-height: 4em;

    --highlight-red: #f44336a0;
    --highlight-green: #4caf50a0;
}

* {
    box-sizing: border-box;
    /*border: 1px solid green;*/
}

/**/

 /* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
* {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  } 
/**/


html {
    scroll-padding: 0;
    overscroll-behavior: none;
}

body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    background-color: black;
}

.full-height {
    height: calc(100% - var(--header-height));
    overflow-y: hidden;
}

.podcasts-list {
    list-style: none;
    padding: 0;
}
.page-header {
    height: var(--header-height);
    justify-content: space-between;
    display: flex;
    background-color: #121a28;
    z-index: 20;
    align-items: center;
}
#details-header-description, #details-header-description p {
    margin-bottom: 0;
}
.navbar-collapse {
    flex-grow: inherit;
}
.page-header h1, .page-header h5 {
    display: inline;
}

.page-header .btn-link, .page-header a {
    color: white;
}
.podcasts-list li  {
    margin: 5px 0;
}
.podcasts-list li:not(.selected-list-entry):hover {
    background-color: var(--bs-gray-800);
}

.selected-list-entry {
    background-color: var(--bs-gray-700);
}

.gray-text {
    color: var(--bs-gray-500);
}

.bold-text {
    font-weight: 800;
}

.podcasts-list div {
    overflow: hidden;
}
.podcasts-list p, h4 {
    margin-bottom: 0;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.podcasts-list img {
    border-radius: 1em;
}

.spacer100px {
    width: 124px;
}

.wrapText {
    text-wrap: wrap;
}

.removePodcast {
    height:100%;
    width: 90px;
}

.list-header {
    position: sticky;
    top: 0;
    background-color: inherit;
    border-bottom: 2px solid var(--bs-gray-300);
}

.admin-panel {
    height: calc(100% - 1rem);
    overflow-y: scroll;
}
.admin-panel .card-body {
    padding-bottom: 0;
}
.admin-panel-header {
    position: sticky;
    top: 0;
    z-index: 10;

}
.admin-list-header {
    position: sticky;
    top: 46px;
    z-index: 10;
}

/* BODGE */
#details {
    position: sticky;
    top: 10;
    background-color: inherit;
}

@media only screen and (max-width: 768px) {
    body {
        height: 100%;
    }
    #mp3player {
        position:fixed;
        bottom: 0;
        left: 0;
        background-color: black;
        height: auto !important;
        width: 100%;
    }
    
}

