@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700");

*{
  font-family: "Roboto Slab", serif;
}





/* Busy overlay styles */
#busy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#busy-overlay p {
  margin-top: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: pulse-text 2s infinite ease-in-out;
}

/* Modern Spinner style */
.spinner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  border: 3px solid transparent;
  border-top-color: #cd3939; /* Brand Red */
  -webkit-animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite; /* Safari */
  animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.spinner:before, .spinner:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ffffff;
  animation: spin 3s linear infinite;
}

.spinner:after {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-top-color: #ff6b6b;
  animation: spin 1s linear infinite;
}

/* Keyframes for spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-text {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}




body, h1, p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and main layout */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Fixed header and footer styles */
header, footer {
  background-color: #ffffff;
  color: white;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  left: 0;
  right: 0;
}

header {
  border-radius: 0 0 15px 15px ;
  padding-bottom: 2px;
  top: 0;
  box-shadow: 0px 0px 10px 0px;
}


#header .logo .open-icon i{
  background-color: #f3c4c4;
  border-radius: 5px;
  font-size: 20px;
  padding: 10px 15px;
  margin-top: 1rem;
  margin-left: -1rem;
  display: none;
}

#header .logo{
  display: flex;
  font-size: 15px;
  margin-left: 2%;
  margin-top: -0.5rem;
}

#header .logo a{
  text-decoration: none;
  color: rgb(91, 2, 2);
  border-bottom: dotted 1px #cd3939;
}

  
.sound-wave {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 0.5rem;
}
  

.bar {
  animation-name: wave-lg;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  background: #f56a6a;
  margin: 0 1.5px;
  height: 10px;
  width: 3px;

  &:nth-child(-n + 7),
  &:nth-last-child(-n + 7) {
    animation-name: wave-md;
  }

  &:nth-child(-n + 3),
  &:nth-last-child(-n + 3) {
    animation-name: wave-sm;
  }
}



@keyframes wave-sm {
  0% {
    opacity: 0.35;
    height: 10px;
  }

  100% {
    opacity: 1;
    height: 25px;
  }
}

@keyframes wave-md {
  0% {
    opacity: 0.35;
    height: 15px;
  }

  100% {
    opacity: 1;
    height: 50px;
  }
}

@keyframes wave-lg {
  0% {
    opacity: 0.35;
    height: 15px;
  }

  100% {
    opacity: 1;
    height: 70px;
  }
}


#header .logo .top-open-icon #top-menu-icon{
  background-color: #f3c4c4;
  border-radius: 5px;
  font-size: 20px;
  padding: 10px 15px;
  margin-top: 1rem;
  margin-left: -1rem;
  display: none;
  position: fixed;
}




#header .song-category-section{
  margin-left: 1rem;
}

.icons{
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: 2%;
}


.icons li{
  font-size: 15px;
  list-style: none;
  margin-right: 20px;
  margin-bottom: 5px;
  color: #000000;
  border-bottom: 1px solid transparent;
  padding: 8px 16px;
  border-radius: 5px;
}

.icons li:hover{
  cursor: pointer;
  color: #000000;
  background-color: #ffc0c0;
}


.icons li.active{
  background-color: #d60d0d;
  color: rgb(255, 251, 251);
}



.default-language{
  position: fixed;
  top: 1rem;
  right: 5rem;
}

.default-language select{
  outline: none;
  border: none;
  padding: 8px 25px;
  border-radius: 5px;
  box-shadow:#000000 1px 1px 2px 0px;
  color: #c20000;
}



footer {
  padding-top: 2px;
  bottom: 0;
}




/* here */

aside {
  width: 340px;
  background-color: #ffc0c0;
  border-radius: 0 15px 0 0;
  color: rgb(0, 0, 0);
  padding: 10px;
  overflow-y: auto;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  height: calc(100vh - 65px);
  display: flex;
  flex-direction: column; /* Ensure proper alignment of child elements */
}



aside::-webkit-scrollbar {
  display: none;
}

aside {
  scrollbar-width: none;
}

aside {
  -ms-overflow-style: none; 
}





.song-name-search{
  width: 88%;
  margin-left: -0.7rem;
  margin-top: -0.6rem;
  display: flex;
  background-color: #fe9799;
  padding: 30px;
}

.song-name-search input{
  font-size: 16px;
  border-radius: 5px;
  outline: none;
  border: 1px solid transparent;
  width: 100%;
  margin-left: -0.6rem;
  padding: 13px 50px 13px 15px;
  color: #c20000;
}

.song-name-search input:focus{
  box-shadow: 0 0 5PX 0 #c20000;
  border: 1px solid #c20000;
}

.song-name-search i{
  position: absolute;
  font-size: 18px;
  right: 2.6rem;
  top: 2.8rem;
  color: #c20000;
}

.song-name-heading{
  margin-left: 2rem;
  width: 45%;
  display: flex;
  border-bottom: 3px solid #c20000;
}

.song-name-heading h2{
  font-size: 18px;
}

.song-name-heading img{
  width: 15%;
  height: 45%;
  /* height: 10%; */
  margin: 16px 0 0 10px;
}

/* here */

#left-menu ul {
  margin-left: -0.5rem;
  height: calc(72vh - 30px);
  overflow-y: auto;
}

#left-menu ul::-webkit-scrollbar {
  display: none;
}


#left-menu ul li{
  font-size: 15px;
  list-style: none;
  margin-left: -2.5rem;
  padding: 5px 0px 5px 10px;
}

/* here */





#left-menu ul li:hover{
  cursor: pointer;
  color: #ffffff;
  background-color: #c40f12;
}

#left-menu ul li.active2 {
  color: #ffffff;
  background-color: #c40f12;
}





/* Content section */
#content {
  flex: 1; 
  padding: 20px;
  padding-left: 3%;
  padding-right: 5%;
  background-color: #ffffff;
  margin-left: 360px;
  margin-right: 220px;
  margin-top: 52px;
  margin-bottom: 2px;
  height: calc(100vh - 50px - 2px - 50px);
  overflow-y: auto;
  width: 60%;
}

#content::-webkit-scrollbar {
  display: none;
}


#content #banner .content h2{
  color: rgb(91, 2, 2);
}

#content #banner .content h4,
#content #banner .content p{
  color: rgb(160, 0, 0);
}


#content #banner .content ul li{
  list-style: none;
  margin-top: 2.5rem;
  margin-left: -2.5rem;
}

#content #banner .content ul li a{
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  color: black;
  background-color: rgb(255, 179, 179);
  padding: 12px 24px;
}

#content #banner .content ul li a:hover{
  color: rgb(255, 241, 241);
  background-color: rgb(10, 0, 0);

}

#content #banner{
  display: flex;
}


.image-object img{
  box-shadow: 0 0 20px 0 rgb(248, 145, 145);
  border-radius: 10px;
  width: 300px;
}





#content #TeamUp .content{
  margin-top: -6rem;
  width: 100%;
}

#content #TeamUp .content h3{
  font-size: 23px;
  margin-left: 10%;

}

#content #TeamUp .content h5{
  font-size: 18px;
  font-weight: bold;
  margin-left: 10%;

}


.songtitle{
  height: auto;
}

/* here */

#content #TeamUp .content .songtitle textarea {
  font-size: 16px;
  width: 100%;
  margin-left: 10%;
  margin-top: 2rem;
  height: auto;
  border: none;
  color: #4e0404;
  overflow: hidden; 
  resize: none;
  padding-bottom: 50px;
  background-color: transparent;
  cursor: default;
  outline: none;
}


#content #TeamUp .content .songtitle textarea::-webkit-scrollbar {
  display: none;
}






/* here */


.parent-audio{
  width: fit-content;
  padding: 10px;
  margin-left: 3rem;
}

.audio-controlls{
  display: flex;
  width: fit-content;
  cursor: pointer;
  background: #f3a9a9;
  padding: 4px 15px;
  border-radius: 6px;
  margin-bottom: 0.3rem;
  font-size: 10px;
}



#audio-container{
  position: absolute;
  background: antiquewhite;
  border-radius: 10px;
  box-shadow: 0 0px 5px 0px gray;
  display: none;
  padding: 10px 5px;
  z-index: 90;
}



.audiochildcontainer{
  display: flex;
  padding: 5px 0px;
  padding-right: 6px;
  margin-top: 3px;
  border-radius: 7px;
  cursor: pointer;
}

.audiochildcontainer:hover{
  background-color: rgb(253 188 188);
}

.audiochildcontainer .play-icon{
    padding: 2px 10px;
    background: white;
    color: black;
    border-radius: 8px;
    box-shadow: 0 0 20px 0 rgb(248, 145, 145);
}

.audiochildcontainer .audioname{
  margin-left: 10px;
  margin-top: 0px;
  font-size: 12px;
}








#content #TeamUp .content .music-player{
  display: flex;
  align-items: center;

  width: 80%;
}

#content #TeamUp .content .music-player.hidden {
  display: none;
}

#content .control-btn {
  background-color: transparent;
  outline: none;
  border: none;
}

#content .control-btn:hover{
  cursor: pointer;
}

#content .control-btn i{
  font-size: 19px;
  color: rgb(160, 0, 0);
}



#content #TeamUp .content #slider{
  -webkit-appearance: none;
  width: 75%;
  height: 6px;
  background: #f37070;
  color: aqua;
  border-radius: 3px;
  cursor: pointer;
  padding: 1.2px;
}

#content #TeamUp .content #slider::-webkit-slider-thumb{
  -webkit-appearance: none;
  background: #040404;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 6px solid #ffbcbc;
  box-shadow: 0 10px 10px rgba(255, 26, 26, 0.22);
} 








.parent-notation{
  display: flex;
  flex-direction: column;
  width: 22%;
  height: 225px;
  position: absolute;
  top: 25rem;
  right: 0rem;

}

.img-controlls{
  display: none;
  width: fit-content;
  cursor: pointer;
  background: #f3a9a9;
  padding: 4px 15px;
  border-radius: 6px;
  font-size: 10px;
}

#notation-container{
  display: none;
  height: fit-content;
  background: antiquewhite;
  padding: 7px;
  border-radius: 10px;
  margin-top: 2rem;
  box-shadow: 0 0px 5px 0px gray;
  position: absolute;
  width: fit-content;
  padding-right: 20px;
  top: 0.5rem;
  right: 0;
}

#notation-container .notation{
  display: flex;
  flex-direction: column;
  width: 100%;
}


.notation .image-container{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  width: 100%;
  cursor: pointer;
  color:#000000;
  padding-right: 6px;
  border-radius: 6px;
}

.notation .image-container:hover{
  background-color: rgb(253 188 188);
}

.notation .img{
  width: 35px;
  height: 35px;
  object-fit: cover;
  box-shadow: 0 0 20px 0 rgb(248, 145, 145);
  border-radius: 10px;
  cursor: pointer;
}

.notation .imgname{
  margin-left: 10px;
  margin-top: 0px;
  font-size: 12px;
}


.img-view{
  display: none;
  margin-top: 2rem;
  width: 70%;
  height: 160px;
  border-radius: 15px;
  box-shadow: 0px 0px 20px #ffa7a7;
}

.img-view img{
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}






.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fullscreen-overlay.show {
  display: flex;
  opacity: 1;
}

.fullscreen-overlay img {
  max-width: 96%;
  max-height: 96%;
  border: 2px solid white;
  border-radius: 5px;
  transform: scale(0.8);
  transition: transform 0.5s ease-in-out;
}

.fullscreen-overlay.show img {
  transform: scale(1);
}

#image-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: black;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 18px;
  cursor: pointer;
  z-index: 10000;
}

#image-icon:hover {
  background-color: #f0f0f0;
}








.parent-youtube {
  background-color: #ffffff;
  align-items: center;
  width: fit-content;
  margin-left: 1rem;
  display: none; /* Default hidden; JavaScript toggles to block */
}

.parent-youtube .fa-youtube {
  color: rgb(255, 255, 255);
  background-color: white;
  border-radius: 0.25rem;
  cursor: context-menu;
}

.parent-youtube .fa-youtube i {
  cursor: pointer;
  color: red;
  font-size: 30px;
}

.child-youtube{
  display: flex; 
  align-items: center; 
  gap: 10px;
}



#video-container{
  position: absolute;
  background: antiquewhite;
  border-radius: 10px;
  box-shadow: 0 0px 5px 0px gray;
  display: none;
  padding: 5px 5px;
  z-index: 90;
  height: fit-content;
  padding: 7px;
  width: fit-content;
  padding-right: 20px;
}

.videocontainer{
  display: flex;
  padding: 2px 0px;
  padding-right: 6px;
  margin-top: 3px;
  border-radius: 7px;
  cursor: pointer;
}


.videocontainer:hover{
  background-color: rgb(253 188 188);
}

.videocontainer .play-icon{
  padding: 0px 6px;
  background: white;
  color: black;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgb(248, 145, 145);
}

.videocontainer .videoname{
  margin-left: 10px;
  margin-top: 0px;
  font-size: 10px;
}

#video-down{
  cursor: pointer;
}

#video-down:hover{
  color: red;
}