body{
    background-color: rgb(233, 233, 233) !important;
    color: rgb(61, 61, 61) !important;
    
}

input, select{
    border-radius: 5px;
    height: 40px;
    border: 1px grey solid;
}
.image-select{
    border-radius: 5px;
    height: 40px;
    border: none;
}

button, ::file-selector-button, input[type=submit] , input[type=button]{
    font-family: var(--basic-font);
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    display: inline-block;
    border: grey 1px solid;
}
button:hover, ::file-selector-button:hover, input[type=submit]:hover , input[type=button]:hover{
    color: #404040;
    background-color: #9ebfe4;
    border-color: #54727c;
}
h1, h2, h3, h4, h5, h6{
    color: rgb(61, 61, 61) !important;
}
.listing-box{
    background-color: white; width: 32%; border-radius: 10px; margin: 0.6%;
    aspect-ratio: 1/1;
}
.listing-title{
    font-size: 3vw !important; color: rgb(61, 61, 61);
    margin: 15px;
    margin-top: 10px;
}
.side{
    position: fixed;
    width: 28%;
    height: 100vh;
    background-color: white;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 15px;
}
.content{
    margin-left: 30%;
    width: 70%;
    height: 100%;
}
.item-add-btn{
    padding: 30px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 35px;
    line-height: 0;
    background-color: #0051ff;
    border: white 4px solid;
    color: white;
    font-size: 60px;
    border-radius: 25%;
    height: fit-content;
    width: fit-content;
    position: fixed;
    bottom: 20px;
    left: 20px;
}
.item-add-btn:hover{
    color: #ffffff;
    background-color: #0051ff;
    border: #0051ff 4px solid;
}
.listing-image {
    width: 100%; 
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: 25% 25%; 
    }
@media screen  and (max-width: 800px) {
    .side{
        display: none;
    }
    .content{
        margin-left: 0;
        width: 100%;
    }
}
@media screen  and (max-width: 400px) {
    .listing-box{
        width: 47%; margin: 1.5%;
    }
}
