/* .inventory-description-div {
    border: 2px solid transparent;
    box-shadow: gray 5px 5px 5px 5px;
} */
.dropdown-icon {
    margin-top: 10px;
    margin-left: 1800px;
}

.login-form {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.login-form button {
    width: 40%;
}

.login-form h2 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.login-form h1 {
    font-weight: bold;
    font-size: 55px;
    font-family: 'Montserrat', 'sans-serif';
}

/* .carousel {
    width: 50%;
    margin: auto;
    margin-top: 60px;
} */

span.required {
    color: #e02612;
    font-size: 14pt;
    font-weight: 700;
    line-height: 1;
}

.btn-black {
    color: #000 !important;
    /* Text color set to black */
    background-color: transparent;
    /* Transparent background */
    border: none;
    /* No border */
}

.inventory-heading {
    margin-top: 30px !important;

}


/* for image section */
.image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .selected-image img {
    width: 500px;
    height: 500px;
} */
.selected-image {
    width: 100%;
    max-width: 500px;
    /* Set a maximum width for the container */
    height: 500px;
    /* Fixed height for the container */
    overflow: hidden;
    /* Hides any overflow */
    display: flex;
    /* Aligns content centrally */
    justify-content: center;
    /* Center content horizontally */
    align-items: center;
    /* Center content vertically */
    background-color: #f0f0f0;
    /* Optional: Add a background color for visibility */
}

#selectedImage {
    min-width: 100%;
    /* Ensure the image fills the container width */
    min-height: 100%;
    /* Ensure the image fills the container height */
    max-width: none;
    /* Remove max-width to allow for full scaling */
    max-height: none;
    /* Remove max-height to allow for full scaling */
    object-fit: contain;
    /* Scale the image proportionally */
}


.thumbnail-images {
    margin-top: 10px;
    /* Adjust spacing */
}

.thumbnail {
    width: 100px;
    height: 100px;
    margin-right: 5px;
    cursor: pointer;
}

.thumbnail:hover {
    border: 2px solid rgb(3, 63, 3);
}

/* in add inventory item page */
.preview img {
    max-width: 150px;
    max-height: 150px;
    margin: 5px;
}

.preview .image-container {
    display: inline-block;
    position: relative;
}

.preview .image-container button {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
}

.editPage_preview img {
    max-width: 150px;
    max-height: 150px;
    margin: 5px;
}

.editPage_preview .image-container {
    display: inline-block;
    position: relative;
}

.editPage_preview .image-container button {
    position: absolute;
    top: -5px;
    right: 5px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    size: 15px;
    height: 20px;
    width: 20px;
    margin-top: 10px;
}

.filenames {
    margin: 10px 0;
    font-family: Arial, sans-serif;
}

.editPage_filenames {
    margin: 10px 0;
    font-family: Arial, sans-serif;
}

/* for edit inventory page */

.invoice-container {
    display: flex;
    flex-wrap: wrap;
    /* Allows images to wrap to next line if needed */
    gap: 10px;
}



.delete-button {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 5px 0px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 10px;
    /* Adjust margin as needed */
}

.delete-button:hover {
    background-color: #d32f2f;
}