body {
    background-color: #121212; 
    font-family: Verdana, Geneva, Tahoma, sans-serif;
 } 

 .top_body{
    background: linear-gradient(#2ad865, #191414);
      
 }

.strip-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    
}

#searchBox {
    background-color: #1e1e1e;  
    color: #e7e7e7;             
    border: 1px solid #555;    
    border-radius: 20px;        
    padding: 10px 20px;
  }
  
  #searchBox::placeholder {
    color: #aaa;                
  }

.navbar_buttons {
    color: white;
    background-color: #1e1e1e;  
    border-radius: 20px;        
    color: #e7e7e7;             
    padding: 10px 20px;
    text-decoration: none;
    margin: 5px;
}
  
.navbar_buttons:hover {
    transform: scale(1.1);
    background-color: #1ed760;

}

.card_section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.card {
    display: flex;
    width: 12rem;
    gap: 10px;
    background-color: transparent;
    text-align: center;
    border:transparent;
}

.card:hover{
    transform: scale(1.1);
    background-color: #1ed760;
}

.card img{
    width: auto;
    position: relative;
    border-radius: 50%;
    gap: 10px;
    text-align: center;
    border-radius: 10px;
    
}

.card p{
    font-size: 12px;
    justify-content: center;
    border: transparent;
    color: #e7e7e7;
    text-align: center;
    margin-top: 15px;
    left: 30%
}


.frames {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.frame:hover{
    transform: scale(1.1);
    background-color: #1ed760;
}
.frames::-webkit-scrollbar {
    display: none; 
}

.frame {
    flex: 0 0 auto;
    border-radius: 10px;
    width: 150px;
    height: 250px;
    background-color: #222;
    text-align: center;
    position: relative;
}

.frame img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.frame p {
    color: #e7e7e7;
    padding-top: 5%;
    font-size: 80%;
    margin: 5px 0;
    text-align: center;
}

.btn {
    background-color:transparent;
    font-weight: bold;
    border-radius: 20px;
    width: 90%;
    margin-top: 5px;
    font-size: 12px;
    border: transparent;
 }

.btn:hover {
    border: #1e1e1e;
    background-color: #1e1e1e;
    color: white;
    transform: scale(1.05);
}


.arrow-left, .arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: opacity 0.3s ease-in-out;
}

.arrow-left {
    left: 10px; 
}

.arrow-right {
    right: 10px; 
}

.arrow-left:hover, .arrow-right:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.strip-carousel:hover .arrow-left,
.strip-carousel:hover .arrow-right {
    opacity: 1;
}

.list-group-item {
    background-color: #222;
    color: #e7e7e7;
    border: 1px solid #333;
    margin-top: 10px;
}

.artistsList {
    display: flex;
    flex-wrap: nowrap;        /* Keeps everything on one line */
    gap: 30px;           /* Space between cards */
    width: 100%;
  }

.artistcard{
    flex: 0 0 50%;          /* Allow shrinking and growing with a base size */
    max-width: 250px;         /* Prevent getting too big */
    background-color: #222;
    color: #e7e7e7;
    border-radius: 12px;
    text-align: center;
  }

  .results {
    display: flex;
    flex-wrap: wrap;               /* Allow wrapping if results overflow */
    justify-content: center;       /* Center the cards horizontally */
    gap: 20px;                     /* Space between cards */
    width: 100%;
    margin-top: 30px;              /* Optional: adds space above results */
  }

  .search_card {
    flex: 0 0 220px;          /* Allow shrinking and growing with a base size */
    max-width: 250px;         /* Prevent getting too big */
    background-color: #222;
    color: #e7e7e7;
    border-radius: 12px;
    text-align: center;
  }


.search_card:hover{
    transform: scale(1.1);
    background-color: #1ed760;
}