.w3-green-hover:hover {
    background-color: goldenrod !important;
}

.ghs-green {
    background: #124d00 !important;
}

.bottom-container {
    background: rgba(255, 255, 255, 0.2); /* Adjust the opacity here */
    border: 1px solid black;
    border-radius: 10px;
    margin: 0px 0px 15px 25px;
    box-shadow: 10px 8px 7px rgba(0, 0, 0, 0.5);
    text-align: right;
    color: white;
    transition: opacity 1s ease-in-out;
    opacity: 0%;
}

.text-with-stroke {
    color: white; /* Text color */
    text-shadow: -1px -1px 0 #000,  
                  1px -1px 0 #000,
                 -1px  1px 0 #000,
                  1px  1px 0 #000, /* Shadow with offset for each direction */
                  2px  2px 0 #000, /* Shadow for stroke */
                  0 0 30px rgba(252, 255, 176, 0.9); /* Glow effect */    
}



.left-column {
    flex: 1; /* Take up remaining space */
    text-align: left; /* Align text to the left */
    font-size: 20px;
}

.right-column {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center items horizontally */
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 10px; /* Add spacing between columns */
    text-align: center; /* Align text to the center */
}

.right-column img {
    height: 60px;
    margin-bottom: 5px; /* Add space between the icon and text */
}

#infoPopup {
    display: flex;
    width: 70%;
    height: 25%;
    padding: 10px;
    background-color: rgba(252, 255, 176, 0.85);
    box-shadow: 10px 8px 7px rgba(0, 0, 0, 0.5);
    position: absolute;
    border-radius: 5px;
    top: 10%;
    right: 15%;
    z-index: 100;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

#logo {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.text-with-stroke {
    margin-top: 15%;
}

#venueLabel {
    padding-left: 80px;
}

/* Define styles for mobile devices */
@media only screen and (max-width: 768px) {
    #bottom-container {
        display: none; /* Example: Change text color to red */
        /* Example: Change font size to 16px */
        /* Add more styles as needed */
    }
    #logo {
        top: 20%;
    }
    .text-with-stroke {
   	margin-top: 25%;
    }
    #venueImage {
        height: 150px;
    }
    #venueLabel {
        padding-left: 0px;
        text-align: center;
    }
}

/* Modal overlay styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background */
}

/* Modal content styling */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Set a reasonable width for the modal */
    max-width: 600px;
    box-sizing: border-box;
    border-radius: 8px;
}

/* Close button */
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Stats Box */
.stats-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Stats rows with border */
.stats-row {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}

/* Stats item (each individual stat) */
.stats-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Stats values */
.stats-value {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Pie charts row styling */
.charts-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

/* Small chart styling (adjust size) */
.small-chart {
    width: 120px !important;
    height: 120px !important;
}

/* Modal positioning & visibility control */
.modal.show {
    display: block;
}


.emerald {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('static/images/emerald.png');
    width: 200px;  /* Adjust size as necessary */
    height: 200px; /* Adjust size as necessary */
    background-position: center;
    background-size: contain;
    opacity: 0.2; /* Adjust opacity to make it faded out */
    z-index: -1;  /* Places the emerald image behind the text */
  }