/* Popup overlay */
.popup-overlay {
    position: fixed;
    bottom: -100%; /* Start utanför skärmen */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
}

/* Popup synlig */
.popup-visible {
    bottom: 0;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}
/* Popup box */
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    text-align: center;
    position: relative;
}