/* Style the genre dropdown */
#genre-dropdown {
    width: 200px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    background-color: #2c2c2c;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect for the dropdown */
#genre-dropdown:hover {
    background-color: #3e3e3e;
    border-color: #76c7c0;
}

/* Focus effect for the dropdown */
#genre-dropdown:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(118, 199, 192, 0.7);
}

/* Style the pagination container */
#pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Style for the pagination buttons */
#pagination-container button {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#genrecards{
display: flex;
overflow-x: auto;
margin-left: 20px;
}

.genres{
    width: 97%;
    margin: 10px;
    margin-bottom: 10px;
    font-size: 2em;
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-left : 10px;
    box-shadow : 0 4px 10px rgb(0, 0, 0); /* Adds depth with a shadow */
    background-color: rgba(26, 163, 194, 0.133);
    border-radius: 50px;
    text-align: center;

}




#pagination-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Adds depth with a shadow */
    
  
  }
  
  #pagination-container button {
    width: 70px;
    padding: 0;
    border: none;
    transform: rotate(5deg);
    transform-origin: center;
    font-family: "Gochi Hand", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    padding-bottom: 3px;
    border-radius: 5px;
    box-shadow: 0 2px 0 #494a4b;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #417ed4;
    
  }
  
  
  #pagination-container button span {
    background: #f1f5f8;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 2px solid #494a4b;
  }
  
  
  #pagination-container button:active {
    transform: translateY(5px);
    padding-bottom: 0px;
    outline: 0;
  }
  