/* Style for tabs */
body{
    margin: 0;
    padding: 0;
    background-repeat: repeat-y;
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/a/a4/Misc_pollen.jpg");
    background-size: contain;
}
.background{
    background-color: rgba(99, 171, 160, 0.364);
    width: 100%;
    height: 100%;  
}
h1{
    text-align: center;
}

p{
    text-align: justify;
    margin-left: 5%;
    margin-right: 5%;
}
li{
    text-align: justify;
    margin-left: 7%;
    margin-right: 5%;
    line-height: 1.8;
}
.tab {
    align-items: center;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: rgba(99, 171, 160, 1.0);
    width: 100%;
}
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
}

.Content{
    font-family: 'Arial';
    width: 75%;
    margin: 0 auto;
    background-color: white;
    padding: 2%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.Footer{
    width: 100%;
    height: 300px;
    position: relative;
    background-color: rgba(99, 171, 160, 1.0);
}

#fileInput {
    display: none;
}
#fileLabel {
    display: inline-block;
    padding: 10px 15px;
    background-color: #3498db;
    color: #460e0e;
    cursor: pointer;
}
#ContainerList{
    min-height: 400px;
    max-height: 400px;
    background-color: #e9ecf0;
    margin-left: 5%;
    margin-right: 5%;
}
#imageContainer {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(8,1fr); /* Responsive grid with minimum item width */
    gap: 20px;
    margin-top: 20px;
    overflow-y: scroll;
    max-height: 360px;
}
.imageBox {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.deleteIcon {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 15px;
    height: 15px;
    background-color: #dbd7d7;
    color: #828687;
    font-weight: bold;
    font-size: 12px;
    border-radius: 50%;
    display: block; /* Initially hidden */
    cursor: pointer;
    text-align: center;
    line-height: 15px;
}    
.uploadedImage {
    max-width: 100%;
    display: block;
}
.fileName {
    padding: 5px;
    text-align: center;
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
    font-size: 10px; /* Adjust the font size */
}
.fileInput{
    border-radius: 5 px;
}
.barChart{
    max-width: 10;
    max-height: 50;
    margin-left: 5%;
    margin-right: 5%;
}

.referenceImageContainer{
    max-height: 120px;
    width: 100%;
    margin-left: 5%;
    margin-right: 5%;
    overflow: hidden;
    gap: 10px;
}

.referenceImage{
    height: 120px;
    width: 120px;
    max-width: 120px;
}

.clippedImageContainer{
    max-width: 120 px;
    max-height: 120 px;
    overflow: hidden;
    position: relative;
}
.clippedImage{
    width: 100 px;
    height: auto;
    left: 0;
    top: 0;
    position: relative;
    clip-path: inset(20px, 20px, 20px, 20px);
}
