#map-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.icon2 {
    width: 150px;
    height: 170px;
    background-image: url('../assets/images/silos.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: relative; /* Important for absolute positioning of children */
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease; /* Add transition for smooth zoom and color change */
}

.icon2:hover {
    transform: scale(1.03); /* Increase the size slightly for the zoom effect */
}

.icon2-label {
    position: absolute;
    top: 19%;
    left: 40%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #642907;
}
.horizontal-icons2 {
    display: flex;
    gap: 0; /* Reduced gap between icons */
    position: absolute;
    top: 100px;
    left: 10px;
}
.icon2-label-details {
    position: absolute;
    top: 35%;
    left: 8%;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for the overlay */
}

/* Modal content styles */
.modal-content {
    background-color: #fff; /* White background for the modal */
    padding: 20px;
    width: 300px;
    border-radius: 8px; /* Rounded corners for a nice touch */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
}

/* Close button */
.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

v{
    font-weight: 700;
    color: black;
}

.vertical-cell {
    background-color: #006666; /* Dark green background */
    color: #ffffff; /* White text color */
    width: 40px; /* Adjust width to accommodate letters */
    text-align: center; /* Center the text horizontally */
    font-weight: bold; /* Make the text bold */
    font-size: 1.2em; /* Adjust font size as needed */
    line-height: 1.5; /* Adjust line height to control spacing between letters */
    writing-mode: vertical-rl; /* Display text vertically, right to left */
    transform: rotate(180deg); /* Rotate to make it look bottom to top */
    padding: 10px; /* Padding for better spacing */
}

