
  .app-container {
    max-width: 240px;
    margin-top: 2rem;
    width: 100%; 
    text-decoration: none !important;
  }

  .app-header {
    display: flex;
    margin-top: 0;
    gap: 0.5rem;
  }

  .app-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #e6e6e6); /* Gradient background for depth */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),inset 0 1px 2px rgba(255, 255, 255, 0.5);
  }
  
  .screenshot-container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 0;
    scroll-snap-type: x mandatory;   /* smooth carousel snapping */
    -webkit-overflow-scrolling: touch;
  }

  .screenshot-container img {
    height: 250px;
    width: auto;                    
    max-width: 400px;               
    border-radius: 0.8rem;   
    flex-shrink: 0;
    scroll-snap-align: start;      
    object-fit: contain;            
    background: #f9f9f9;           
    transition: transform 0.2s ease;
  }

  .screenshot-container img:hover {
    transform: scale(1.02);
  }

  .app-info {
    display: grid;
  }

  .app-name {
    font-size: 1rem;
    color: #1d1d1f;
    align-items: top !important;
    text-align: top !important;
  }
  
  .app-category {
    font-size: 0.6rem;
    color: #6e6e73;
    margin-top: 0;
  }
  
  .app-rating {
    padding: 0;
    font-size: 0.6rem;
    color: #f39c12;
  }
 
  .description-container {
    margin-bottom: 20px;
  }
  
  .description {
    font-size: 0.8rem !important;
    color: #333;
  }
  
  .Action-button-container .btn {
    border: 0;
    outline: 0;
    cursor: pointer;
    color: gray;
    background-color: rgb(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 300;
    padding: 4px 8px;
    max-height: 28px;
    border: 0;
  }

   .Action-button-container .btn:hover {
    color: white;
    background-color: #0066d3;
    text-decoration: none;
   }


  /*********************************
  Screenshot silder details
  **********************************/
  /* Fullscreen modal */
.image-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-glass-dark);
  align-items: center;
  justify-content: center;
}

/* Modal image */
.image-modal .modal-content {
  max-width: 70%;
  max-height: 75%;
  border-radius: 15px;
}

/* Close button */
.image-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--text-primary);
  font-size: 40px;
  cursor: pointer;
  z-index: 10;
}

/* Navigation buttons */
.nav-btn {
  position: absolute;
  height: 10%;
  width: 5%;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-primary);
  align-content: center;
  padding: 2%;
  cursor: pointer;
  border-radius: 7.5%;
}

#prev { left: 10px; }
#next { right: 10px; }
