  /* Fullscreen Background */
  .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url("../background/wallpaper.jpg") no-repeat center center;
    background-size: cover;
    z-index: 0;
  }
  
  .floating-buttons {
      position: fixed;
      top: 50%;
      right: 10px; /* Halfway hidden */
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 70px;
      padding: 10px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      justify-content: center;
      align-items: center;
      transition: right 0.3s ease-in-out; /* Smooth slide effect */
      z-index:1;
  }

  .floating-buttons.hidden {
  right: -20px; /* Fully visible */
  }


  .floating-buttons .v-btn {
    color: white !important;
    background: none !important;
    box-shadow: none !important;
    width: 40px; /* Adjust size */
    height: 40px;
    padding: 10 0 0 0;
  }

  /* Highlight Selected Button */
  .floating-buttons .v-btn.active {
      background: rgba(255, 255, 255, 0.8) !important;
      color: black !important;
      font-weight: bold;
      transform: scale(1.2);
      border-radius: 50%;
      transition: all 0.3s ease;
  }


  /* Centered Panel Container */
  .panel-container {
    position: fixed;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 96%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 1s ease;
  }
  
 
  .transparent-toolbar {
    background: transparent !important;
  }
   
  /* Translucent Content Card */
  .content-card {
    width: 100%;
    height: 100%;
    
  }
  

  .translucent-box{
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    
    transition: opacity 1s ease;
  }

  .translucent{
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
 
  .v-progress-circular {
    margin: 1rem;
  }

  
/* Combined Fade + Slide Up Animation */
.slide-up-enter-active,
.slide-up-leave-active,
.slide-down-enter-active,
.slide-down-leave-active {

  transition:  transform 0.5s ease-in-out;
}




/* Fade out first before sliding up */
.slide-up-leave-to {
  transform: translateY(-20%);
}
.slide-up-leave-to .translucent-box {
  opacity: 0;
}

/* Fade in while sliding up */
.slide-up-enter-from{
  transform: translateY(20%);
}
.slide-up-enter-from .translucent-box {
  opacity: 0;
}


/* Fade out first before sliding down */
.slide-down-leave-to {
  transform: translateY(20%);
}
.slide-down-leave-to .translucent-box {
  opacity: 0;
}

/* Fade in while sliding down */
.slide-down-enter-from {
  transform: translateY(-20%);
}
.slide-down-enter-from .translucent-box {
  opacity: 0;
}






/* Zoom In/Out Animation */
.zoom-fade-enter-active,
.zoom-fade-leave-active {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Zoom in from small scale with fade-in */
.zoom-fade-enter-from {
  transform: scale(0.8);
  opacity: 0;
}

/* Zoom out to small scale with fade-out */
.zoom-fade-leave-to {
  transform: scale(0.8);
  opacity: 0;
}





.dm-category-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.dm-category-buttons {
  display: flex;
  gap: 0.5rem;
}

.dm-static-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}



.custom-outline-btn {
  border-radius: 9999px;
  padding: 1.7rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 0.25rem;
  position: relative;
  min-width: 100px;
  text-align: center;
  background-color: transparent;
}



.control-center {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(20px);
}

.grid-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: 1fr;
gap: 10px;
width: 80%;
max-width: 500px;
}

.grid-item {
display: flex;
}

.control-tile {
width: 100%;
padding-bottom: 100%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
border-radius: 20px;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(15px);
transition: 0.3s ease;
color: white;
font-weight: bold;
}

.control-tile:hover {
background: rgba(255, 255, 255, 0.3);
transform: scale(1.05);
}

.control-tile span,
.control-tile v-icon {
position: absolute;
}



/*USING IN DASHBOARD MENU (START)---------*/
/* Animation Classes */
/*.item-visible {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.item-hidden {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}*/

/* Text Colors */
/*.text-light {
  color: white;
}

.text-dark {
  color: #333;
}
*/
.label { /*Category Button*/
  font-size: 0.8rem;
  font-weight: bold;
}
/*USING IN DASHBOARD MENU (END)----------*/
