.popup-trigger:hover .popup {
    display: block;
}

.popup {
    display: none;
    position: absolute;
    top: 100%; /* Position the popup below the trigger */
    left: 50px;
    background-color: white;
    border: 2px solid #ccc;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 150px; /* Adjust the width as needed */
    border-radius: 10px;
    margin-top: -7px;
    margin-left: -10px;
}

.popup a {
    display: block;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
}

.popup a:hover {
    color: #77ed57;
    transition: transform 0.3s ease; /* Smooth transition */
    transform: scale(1.1); /* Scale the text to 120% */
}

@media only screen and (max-width: 768px) {
    .popup{
    display: none;
    position: absolute;
    top: 100%; /* Position the popup below the trigger */
    left: 50px;
    background-color: white;
    border: 2px solid #ccc;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 150px; /* Adjust the width as needed */
    border-radius: 10px;
    margin-top: -25px;
    margin-left: -75px;
}
}