.dropbox-container{
    width: 6rem;
    border: 1px solid #212529;
    background-color: white;
    color: #212529;
    border-left:none;
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
    font: 'Poppins';
    padding:0;
    margin: 0;
}

.dropbox-text{
    padding:0;
    margin: 0;
    text-align: center;
    margin-top:0.4rem;
    cursor:pointer
}

.dropbox{
    display:flex;
    position: absolute;
    width:6rem;
    background-color: white;
    padding:0;
    border-radius: 0.3rem;
    margin-left: 1rem;
    box-shadow: 14px 10px 25px 10px rgba(0,0,0,0.25);
    margin-top:0.5rem;
}

.dropbox-list{
    display: flex;
    color: black;
    padding-left:0;
    flex-direction: column;
    text-align: center;
    width: 100%;
    margin: 0;
    cursor: pointer;
    list-style-type: none;
    gap: 0.5rem;
}

.drop-item{
    padding: 0.5rem;
    cursor: pointer;
}

.drop-item:hover{
    background-color: #212529;
    color:white;
    transition: all 0.2s ease-in-out;
}