#sorting-container {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
}

#sort-btn {
    background-color: #6b5e49;
    color: #e9e9e9;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    transition: background 0.3s ease-in-out;
}

#sort-btn:hover {
    background-color: #0c0c0c;
}

#sorting-by-div {
    display: none;
    position: absolute;
    left: 50px;
    top: 0;
    background-color: #0c0c0c;
    color: #e9e9e9;
    min-width: 200px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

#sorting-by-div a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #e9e9e9;
}

#sorting-by-div a:hover {
    background-color: #6b5e49;
    border-radius: 3px;
}

.plate{
    background-color: #6b5e49;
}

#delivery_advert{
    background-color: #6b5e49;
    width: 100%;
    height: 100%;
    color: #e9e9e9;
    margin-bottom: 10px;
}

#delivery_advert h3{
    margin: 0;
    padding: 10px 0;
    font-size: 24px;
}

#sorting-by-div{
    position: sticky;
    width: 90%;
    margin: auto;
}

.card{
    display: inline-block;
    width: 45%;
    height: 800px;
    max-height: 800px;
    margin: 10px auto;
    padding: 5px;
    background-color: #e9e9e9;
}

.card:hover{
    color: #6b5e49;
    background-color: #f3f3f3;
}

.card-title{
    font-family: "Nokora", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 28px;
    padding: 4px;
    margin: 0;
}

.artist-images{
    display: flex;
    max-width: 200px;
    height: auto;
    max-height: 300px;
    border-radius: 8px;
    margin: auto;
}

.card-info{
    height: 100px;
    max-height: 100px;
    overflow-y: auto;
}

#sorry-search{
    width: 100%;
    color: #e9e9e9;
}

#sorry-search h2{
    text-decoration: underline;
}

@media only screen and (max-width: 600px){

    .card{
        width: 90%;
    }

    .card-title{
        font-size: 18px;
    }
}