body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}

#logo {
    width: 100px;
    /* Adjust this value based on your logo's dimensions */
    height: auto;
}

.overview-btn {
    margin-bottom: 5px;
    margin-right: 10px;
    margin-left: 10px;
}

#logout-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background-color: #fd8686;
    /* This is a nice Lego orange */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}


#logout-btn:hover {
    background-color: #ff6c4b;
    /* A slightly darker shade for hover effect */
}


.choices {
    margin-top: 8%;
    background-color: rgba(219, 219, 219, 0.897);
    border-radius: 10px;
    padding: 1%;
}

.update-button {
    float: right;
}

.helper {
    float: right;
    margin-top: 5px;
}

.card-image-hidden {
    display: none;
}

.hide-button {
    display: none;
}

.qty-button {
    float: left;
    margin-left: 3px;
    margin-top: 5px;
}

