/* tip-my-tunes-styles.css */
  #song-queue {
    background-color: rgba(0, 0, 0, 0.5); /* Black with 50% transparency */
    padding: 5px;
}
  
  
    ul.song-list {
        list-style-type: none; /* Remove default bullets */
        padding: 0; /* Remove default padding */
    }
    ul.song-list li {
        margin-bottom: 10px; /* Add some space between list items */
    }
    
  ul.song-list li .uk-h6 {
  color: #fff;
}
    
    
    
.user-songs {
    padding: 20px;
}

.request-song-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.request-song-button:hover {
    background-color: #0056b3;
}

.payment-success p{
font-size: 1.2rem;

}
/* Custom Songs Page Code */
.user-songs {
    margin: 0;
    padding: 0;
}


.user-songs .uk-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Prevent wrapping */
}

.user-songs .uk-flex-middle {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Allow the div to grow */
}

.user-songs .uk-flex-1 {
    flex: 1; /* Ensure this div takes up available space */
    display: flex;
    justify-content: flex-start; /* Align items to the start */
    align-items: center;
}

.user-songs h6 {
    font-size: 1rem;
    margin: 0;
    color: #fff;
    white-space: nowrap; /* Prevent line breaks */
}

.user-songs .song-price {
    margin-left: 10px;
    white-space: nowrap; /* Prevent line breaks */
    font-size: 1rem;
    color: #fff; /* Ensure the color matches the title */
}

.user-songs .uk-margin-right {
    margin-right: 8px;
}

.user-songs .uk-button {
    font-size: 0.9rem;
    padding: 5px 10px;
    white-space: nowrap; /* Prevent line breaks */
    flex-shrink: 0; /* Prevent shrinking */
}

/* Responsive Design */
@media (max-width: 600px) {
    .user-songs .uk-flex-between {
        flex-direction: column; /* Stack elements vertically on mobile */
        align-items: flex-start;
    }

    .user-songs .uk-flex-1 {
        flex-direction: row; /* Ensure the icon, title, and price are in a row */
        align-items: center;
        width: 100%;
    }

    .user-songs h6, .user-songs .song-price {
        white-space: normal; /* Allow line breaks if necessary */
    }

    .user-songs .uk-button {
        margin-left: 0;
        flex-shrink: 0; /* Prevent shrinking */
    }
        .us-message {
        color: #fff;
    }
    ul.song-list li .uk-h6 {
    color: #fff;
    font-size: .8rem;
}
}

