﻿
.product-image-container {
    display: flex;
    justify-content: center; 
    align-items: center;
    height: 100px; 
    width: 130px; 
}

.product-image {
    width: 100%;
    height: 100%; 
    max-width: 130px; 
    max-height: 130px; 
    object-fit: contain;
    margin: 0 auto;
}

    .product-image:hover {
        cursor: pointer;
    }

.thumbnail {
    width: 100%;
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
    margin: 0 auto;
}

.ean-cells {
    padding: 20px;
}

.thumbnail-cell {
    position: relative;
    width: 100%; 
    height: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #cccccc; 
    box-sizing: border-box; 
}
    .thumbnail-cell .thumbnail {
        width: 45px;
        height: 45px;
        object-fit: contain;
    }
.header-instructions {
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .header-instructions h1 {
        font-size: 24px;
        margin-bottom: 10px;
        text-align: left;
    }

.instruction-text {
    display: flex;
    align-items: center;
}

    .instruction-text p {
        font-size: 16px;
        color: #666;
        margin: 0;
    }


.info-icon {
    position: relative;
    color: #17a2b8; 
    margin-left: 5px; 
    margin-top: 5px; 
}
    .info-icon i {
        font-size: 16px; 
        cursor: pointer; 
    }

.info-tooltip {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    background-color: #ccc;
    border: 3px solid #ccc; 
    z-index: 1000;
    white-space: nowrap;
    width: auto;
    height: auto;
}

    .info-tooltip img {
        width: auto; 
        height: auto; 
    }

.info-icon:hover .info-tooltip {
    display: block;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    height: 100%;
    gap:10px;
}

.product-wrapper,
.image-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.area-grid-layout{
    display:flex;
}
.sub-header {
    font-size: 19px;
    margin-bottom: 10px;
    padding: 7px;
    text-align: left;
}

.hideCol col:nth-last-child(2) {
    width: 0px !important;
}