/* ################################################## */
/* Website Layout                                     */
/* ################################################## */

.website {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9f9f9;
}


/* ################################################## */
/* Website Header                                     */
/* ################################################## */

.website-header {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #333;
    color: white !important;
    top: 20px;
    left: 0;
    right: 20px;
}

.website-header-menu-item {
    margin: 0 15px;
    padding: 10px !important;
    color: white !important;
    text-decoration: none !important;
    cursor: pointer; /* Add this line to change the cursor to a pointer */
}

.website-header-menu-item:hover {
    text-decoration: underline;
}

/* ################################################## */
/* Website Body                                       */
/* ################################################## */

.website-body {
    flex: 1;
/*    padding: 20px;*/
    max-width: 800px;
    margin: auto;
    margin-top: 20px;
}

/* ################################################## */
/* Website Footer                                     */
/* ################################################## */

.website-footer {
    width: 100%;
    height: 4rem;
}

.footer-wrapper {
    width: 100%;
    height: 4rem;
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #333;
    color: white;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.footer-wrapper.sticky {
    height: 4rem;
    z-index: 5;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.website-footer > .footer-wrapper > .footer-left,
.website-footer > .footer-wrapper > .footer-right {
    flex-grow: 0;
}

.website-footer > .footer-wrapper > .footer-center {
    flex-grow: 1;
    text-align: center;
}

/* ################################################## */
/* Audio Player Bar                                   */
/* ################################################## */

.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-buttons > .player-button {
    background-color: #333;
    color: #fff;
}

.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-progress-outer,
.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-volume-outer {
    background-color: #333;
    color: #fff;
}
.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-progress-outer > .player-progress {
    background: #111;
}
.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-progress-outer > .player-progress > .bar {
    background: #fff;
}

.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-volume-outer > i {
    font-size: 1rem;
}

/* ################################################## */
/* Other                                              */
/* ################################################## */

.FeaturedEpisode {
    text-align: justify;
}
