@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


body {
    font-family: Arial, sans-serif;
}

#audio-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
   
}
#prime{
    margin-top: 14px;
    font-family: 'Roboto', sans-serif;
    color: rgba(27, 27, 27, 0.658);
}

.audio-item {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 2px solid  rgba(255, 255, 255, 0.941);
    padding: 10px;
    border-radius: 8px;
    margin: 3px;
   background-color: rgba(128, 128, 128, 0.082);
    
}

.play-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
}

.play-btn img {
    width: 24px;
    height: 28px;
}

.audio-image {
    width: 80px;
    
    border-radius: 15px;
    display: block;  /* Ensure element respects width and height */
    object-fit: cover;
}


.audio-name {
    flex: 1;
    margin: 0;
    
}
#aud{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-left: 10px;
}

.download-btn {
    padding: 8px 12px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    margin-left: 7px;

}

.download-btn:hover {
    background-color: #f1f3f5;
}
