* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-MainFont);
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 10px;
    overflow: none;
}

.content {
    padding-bottom: 70px;

}

.content2 {
    padding: 20px;
}

.app-header {
    background-color: var(--secondary-color);
    box-shadow: 3px 3px 10px var(--footer-color-2);
}

.app-header .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-header .logo {
    width: 300px;
}

.subheader {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 3px 3px 10px var(--footer-color-2);
    margin: -5px auto 5px auto;
    width: 90%;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
}

.subheader button {
    width: 40px;
    background-color: var(--primary-color);
    border-color: transparent;
    border-radius: 50%;
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 5px;

}
.subheader img {
    width: 30px;
    border-radius: 50%;
}

.subheader .radio-buttons {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.now-playing {
    display: flex;
    flex-direction: column;

}

.now-playing .music-list {
    display: flex;
    list-style: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
}

.list-header {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: bold;
    margin: 5px;
}

.paragraf {
    font-size: 16px;
    color: var(--primary-color);
    padding: 5px;
}

.paragraf form {
    font-size: 18px;
    color: var(--primary-color);
    border-color: transparent;
}

.paragraf input {
    border-color: transparent;
    border-radius: 5px;
    background-color: var(--footer-color);
    height: 30px;
}

.paragraf button {
    color: var(--primary-color);
    align-self: right;
    width: 150px;
    height: 40px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    border-color: transparent;
    margin-bottom: 10px;
}

.now-playing .playing {
    display: flex;
    position: relative;
}

.now-playing .playing .album{
    width: 150px;
    height: 150px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
    border-radius: 5%;
}

.now-playing .playing .wave{

    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
    border-radius: 15%;
    position: absolute; /* Position relative to the list item */
    top: 122px; /* Adjust as needed */
    left: 122px; /* Adjust as needed */
    width: 20px;
    height: 20px;
    z-index: 1; /* Ensure it's on top */
}

.now-playing .playing .title {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: bold;
}

.now-playing .playing .artist {
    color: var(--primary-color);
    font-size: 12px;
}

.now-playing .playing .username {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: bold;
    font-style: italic;
}

.media {
    color: #440505;
    display: flex; 
    align-items: flex-end;
    justify-content: space-around;
}

.instagram .invisible img {
    width: 25px;
    height: 25px;
}

.media button {
    width: 50px;
    background-color: transparent;
    border-color: transparent;
    display: flex;
    align-content: center;
}

.like {
    display: flex;
    align-content: left;
    align-items: center;
    color: red;
}

.like .invisible img {
    width: 35px;
    height: 35px;
}

.letras .invisible img {
    width: 25px;
    height: 25px;
}

.filas img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
    margin-left: 10px;
    margin-bottom: 5px;
    border-radius: 10px;
}

.title {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: bold;
}

.artist {
    font-size: 12px;
    color:var(--primary-color);
}

.username {
    font-size: 12px;
    color:var(--primary-color);
    font-weight: bold;
    font-style: italic;
}

.filas .music-item {
    display: flex;
    list-style: none;
    padding: 0px;
    margin: 0px;
    width:100%;
}

.stat-list-header {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: bold;
    margin: 5px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}
.music-item-stat {
    display: flex;
    flex-direction: column;
    color: var(--primary-color);
}

.stat-show {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.stats {
    color: var(--primary-color);
    font-size: 24px;
    align-items: right;
    margin-right: 10px;
}
.stat-hide {
    color: var(--footer-color);
    font-size: 16px;
    display: none;
}

.stat-hide ul {
    list-style:circle;
    list-style-type: circle;
}

.add-song {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.add-song button {
    color: var(--primary-color);
    align-self: right;
    width: 150px;
    height: 50px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    border-color: var(--footer-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.search {
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 15px;
    margin-top: 15px;
}

.search form {
    text-align: right; /* Align labels to the right */

  }
  
.search input[type="text"] {
    color: var(--primary-color);
    margin-left: 15px; /* Adjust margin as needed */ 
    width: 90%;
    height: 40px;
    border-color: var(--footer-color);
    border-radius: 20px;
    margin: 5px;
    background-color: var(--secondary-color);
    padding-left: 15px;
  }

.search button {
    color: var(--primary-color);
    align-self: center;
    width: 150px;
    height: 40px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    border-color: var(--footer-color);
    margin-bottom: 10px;
    margin-top: 10px;
}

.info-n-add {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.info {
    width: 100%;
  }
  
  .add-button {
    align-self:flex-end center;
    margin-right: 10px;
  }

  .add-button button {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-color: transparent;
    border-radius: 20%;
    color: var(--secondary-color);
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .add-button img {
    width: 30px;
    height: 30px;
  }

.search input[type="submit"] {
        color: var(--primary-color);
        align-self: center;
        width: 150px;
        height: 50px;
        border-radius: 15px;
        background-color: var(--secondary-color);
        border-color: transparent;
        margin: 5px;
}

.container_share {
    background-size:contain; /* Ensure background image covers the container */
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100vw; /* Set container width to 100vw for full screen */
    height: 100vh; /* Set container height to 100vh for full screen */
    display: flex; /* Enable flexbox for centering buttons */
    flex-direction: column; /* Stack buttons vertically */
    justify-content: center; /* Center buttons vertically within the container */
    align-items: center; /* Center buttons horizontally within the container */
}

.button_share {
    margin: 30px; /* Add some spacing between buttons */
    padding: 15px 30px; /* Set button size and aspect */
    border: none; /* Remove default button border */
    border-radius: 5px; /* Add rounded corners */
    font-size: 48px; /* Set button font size */
    width: 60%;
    height: 8%;
    border-radius: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    opacity: 70%;
    border-color: var(--primary-color);
    cursor: pointer; /* Indicate clickable button */
}

.refresh {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 8px;
    color: var(--background-color);
}

.app-footer {
    
    background: var(--footer-color);
    color: var(--footer-color-2);
    font-size: 12px;
    position:fixed;
    left:0px;
    bottom:0px;
    height:60px;
    width:100%;

}
.app-footer ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
}

.app-footer ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-footer button {
    color: var(--footer-color-2);
    background-color: transparent;
    border-color: transparent;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}
.app-footer img {
    width: 30px;
    border-radius: 50%;
}

.management {
    text-align: right;
    visibility: hidden;
    padding: 5px;
    padding-right: 25px;
}

/* Splash */
#splash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--splash-backgroud-color);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 2s;
}

#splash img {
    width: 300px;
} 

#splash.fade {
    opacity: 0;
}

@media(min-width:768px) {
    .management {
        visibility: visible;
    }
}