.selected {
    background-color: white !important;
    color: black !important;
}
.buttonsSelector{
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 150px;
}
.bigContainer{
    padding-top: 20px;
}
.bigContainer h1{
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}
.buttonsSelector button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: all 0.5s ease;
}

.selectionedPlaylists{
    display: none;
}
.container {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    overflow: hidden;
    width: 250px; /* Largeur fixe des cartes */
    max-width: 250px; /* Limite de la largeur maximale des cartes */
    height: 380px;
    margin: 0 15px; /* Espacement entre les cartes */
    display: flex;
    flex-direction: column;
}

.cover {
    position: relative;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}

.cover img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

.content {
    flex-grow: 1;
    padding: 20px;
    text-align: center;
}

h3,
p {
    margin: 0;
    margin: 7px;
}

.container button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: all 0.5s ease;
}
.selectionedPlaylists{
    padding-bottom: 50px;
}
button:hover {
    background-color: white;
    color: black;
    transition: all 0.5s ease-in-out;
}
i{
    color: white;
    width: 50px;
}
.unvailable{
    color: rgba(255, 255, 255, 0.194);
    cursor: not-allowed;
}
.textUnvailable {
    display: block;
    color: rgba(255, 255, 255, 0.342);
    font-style: italic;
}
.textUnvailable a{
    color: rgba(242, 51, 51, 0.836);
    text-decoration: underline;
}