*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html{
    height: 100%;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background: #ffe4b2;
}

header{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    background: #ffc700;
    margin: 30px;
    padding: 10px 30px;
    border-radius: 20px;
}

header .right{
    list-style: none;
    display: flex;
    gap: 40px;
    font-size: 1.2em;
}

header .right li{
    display: inline-block;
    color: #9c7105;
    border-bottom: 2px solid;
}

.logo a{
    font-size: 2.4em;
    font-family: initial;
}

.logo img{
    width: 80px;
    vertical-align: middle;
    margin-right: 10px;
}

footer {
    margin: 30px 0;
    border-radius: 20px;
    width: calc(100% - 60px);
    // border: 3px solid #f9c747;
    padding: 40px;
    margin-left: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    text-decoration: none;
    transition: color 0.3s;
    color: #787878;
    font-size: 0.9em;
}

.footer-section ul li a:hover {
    color: #4273da;
}

.footer-section p {
    font-size: 14px;
    margin-top: 10px;
}

.footer-section .social-icons a {
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-section .social-icons a:hover {
    color: #4273da;
}

.footer-bottom {
    text-align: center;
    margin-top: 35px;
    font-size: 12px;
}

.container{
    margin-left: 30px;
    width: calc(100% - 60px);
    background: #fff3dd;
    padding: 50px;
    // border: 3px solid #e7e7e7;
    border-radius: 20px;
}

.container h1{
    margin-bottom: 20px;
}

.container h2, .container h3, .container h4 {
    margin-bottom: 10px;
}

.container p{
    margin: 10px 0;
}

.container li {
    margin-left: 20px;
}

.mb-10{
    margin-bottom: 10px;
}

.mb-2{
    margin-bottom: 2px;
}

.mb-4{
    margin-bottom: 2px;
}

.login-module button{
    border: 0;
    padding: 10px;
    background: #f9c747;
    font-size: 1.5em;
    border-radius: 40px;
}

@media screen and (max-width: 800px){
    
    header{
        flex-direction: column;
        gap: 10px;
        padding-bottom: 30px;
    }
    
    .footer-bottom {
        font-size: 1em;
    }

}

main{
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
}

main .sidebar{
    background: #ffffff;
    width: 300px;
    height: 100%;
    text-align: center;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
}

a{
    text-decoration: none;
    color: black;
}

.main-section{
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-grow: 2;
    height: 0;
}

.pulses-dashboard{
    width: 100%;
    padding: 20px;
    background: #efefef;
    overflow: auto;
}

.playlists{
    flex-grow: 2;
}

main .sidebar ul li{
    list-style: none;
}

.playlists ul li {
    background: #ffd49e;
    padding: 4px 10px;
    margin: 10px;
    border-radius: 50px;
    font-size: 0.9em;
}

.music {
    background: #f3983e;
    margin: 20px;
    padding: 10px 10px;
    border-radius: 8px;
}

img.logo{
    width: 100px;
    margin-bottom: 10px;
}

.center{
    text-align: center;
}

.playing{
    background: blue;
}

.outer-section{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.playing .music-playing{
    padding: 30px;
    background: #222222;
    color: white;
}

[data-media-id] {
    border: 2px solid orange;
    padding: 10px;
    background: #ffe8c7;
    font-size: 0.8em;
    margin: 10px;
    border-radius: 7px;
    position: relative;
}

[data-media-id]:after {
    content: "▶";
    position: absolute;
    right: 12px;
    top: 12px;
}

[data-media-id].playing-media:after{
    content: "❚❚";
}







