/* Pop-up container */
.popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 90%;
    font-size: 14px;
}

.popup p {
    margin: 5px 0; /* Reduced vertical margin for paragraphs */
}

/* Pop-up close button */
.popup-close {
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}

.popup-close:hover {
    background: var(--accent);
}

/* Tablet and up */
@media (min-width: 700px) {
    .popup {
        width: 400px;
    }
}