body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f9f9f9;
    height: fit-content;
}
#menu {
    width: 100vw;
    height: 10vh;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    box-sizing: border-box;
    position: relative;
}
#menu img {
    height: 60px;
    width: 60px;
    align-self: center;
    position: absolute;
    left: 20px;
    border-radius: 10px;
}
#menu ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    margin: 0;
    padding: 0;
}
#menu li {
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    transition: all 0.2s ease;
    text-transform: uppercase;
}
#menu li:hover {
    transform: scale(1.1);
}
#contentContainer {
    padding: 2rem 4rem;
    width: 100vw;
    box-sizing: border-box;
    height: 90vh;
}
#homeContent, #aboutUsContent {
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 4rem;
}
#homeContent img, #aboutUsContent img {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    max-height: 75vh;    
    height: auto;
}
#homeContent .text, #aboutUsContent .text {
    width: 100%;
}
#aboutUsContent, #episodesContent, #playerContent {
    display: none;
}
#episodesContent {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}
#episodesList {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    gap: 20px;
}
#episodesList li {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
#playerContent {
    display: none;
    flex-direction: row;
    align-items: center;
    height: 100%;
    gap: 3rem;
    padding: 2rem 4rem;
    box-sizing: border-box;
    position: relative;
}
#aboutEpisodeContainer {
    width: 100%;
    height: 100%;
}
#player {
    width: 60%;
    align-items: center;
    display: flex;
    flex-direction: column;
}
#player h3 {
    margin: 1rem 0;
    text-align: left;
    width: 100%;
}
#player img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
#progressContainer {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}
#progressBarContainer {
    width: 82%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}
#progressBarContainer:hover {
    cursor: pointer;
}
#progressBar {
    width: 0;
    height: 100%;
    background-color: #000000;
    transition: width 0.1s linear;
    position: relative;
}
#timeContainer {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #555;
}
#audioControls {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
#audioControls button {
    padding: 10px 15px;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    background-color: transparent;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#menu li.active {
    font-weight: bold;
}
#smallPlayer {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: rgb(255, 255, 255);
    padding: 0.8rem 1rem;
    border: 1px solid rgb(204, 204, 204);
    width: 100%;
    box-sizing: border-box;
    height: 10%;
    display: flex;
    justify-content: space-between;
    padding-right: 2rem;
}
#smallPlayer div {
    display: flex;
    align-items: center;
    gap: 10px;
}
#smallPlayer img {
    height: 100%;
    width: auto;
    border-radius: 10px;
    object-fit: cover;
    vertical-align: middle;
}
#smallPlayer button {
    padding: 5px 10px;
    font-size: 1rem;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
#minimizePlayerBtn {
    position: absolute;
    top: -1rem;
    right: -3rem;
    font-size: 1.2rem;
    background-color: transparent;
    border: 1px solid #ccc;
    padding: 8px  10px;
    border-radius: 5px;
    cursor: pointer;
}