/* Container for the entire background image and list */
.background-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* Background image styling */
.background-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Positioning the item list absolutely over the image */
.item-list-wrapper {
    position: absolute;
    top: 1%;
    left: 10%;
    right: 10%;
    bottom: 15%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

/* Columns for the item list */
.column {
    display: flex;
    flex-direction: column;
    width: 45%;
}

/* Individual item styling */
.item {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0; /* Zero padding */
    border-radius: 5px;
    margin: 0; /* Zero margin */
    text-align: left;
    font-size: 11px;
    position: relative;
}

/* Admin list styling */
.admin-list .admin-item {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1px;
    border-radius: 5px;
    margin: 10px 0;
    text-align: left;
    font-size: 12px;
}

/* Cost input box styling */
.edit-cost {
    width: 70px;
    margin-left: 10px;
}

/* Button styles */
.toggle-button, .submit-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.delete-button {
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5px;
    padding: 5px 10px;
}

.add-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5px;
    padding: 5px 10px;
}

/* Ensuring the content section has proper spacing */
.content {
    max-width: 1200px;
    margin: auto;
    padding: 0;
}

/* Hidden class to toggle visibility */
.hidden {
    display: none;
}
