.adminProducts{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 50px;
    column-gap: 50px;
    margin-top: 50px;
    padding-bottom: 50px;
}
.productButtons{
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.adminProduct{
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
    /*display: flex;*/
    flex-direction: column;
    justify-content: space-between;
}
.adminProductImage{
    width: 300px;
    height: 210px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.adminProductBottom{
    padding: 15px;
    display: flex;
    justify-content: end;
    flex-direction: column;
    row-gap: 12px;
}
.adminProductName{
    font-size: 19px;
    font-weight: bold;
}
.buttonProductAdminAdd{
    background-color: #4CAF50; /* Green background color */
    color: white; /* White text color */
    padding: 10px 20px; /* Padding around the text */
    font-size: 16px; /* Font size */
    border: none; /* No border */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer;
}
.adminProductPrice{
    font-size: 28px; /* Set the font size */
    color: #333;
}

@media only screen and (max-width: 1400px) {
    .adminProducts{
        grid-template-columns: 1fr;
    }
}
