.punimohi-popup {
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    max-width: 90vw;
}
.punimohi-popup.show {
    display: block;
    transform: translateY(0);
}
.punimohi-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}
.punimohi-close-button {
    float: right;
    cursor: pointer;
    font-size: 20px;
    line-height: 20px;
}
.punimohi-popup-content p {
    margin: 0 0 10px;
    font-size: 16px;
}
.punimohi-popup-content button {
    margin-right: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
#punimohi-allow-button {
    background: #28a745;
    color: white;
}
#punimohi-later-button, #punimohi-never-button {
    background: #6c757d;
    color: white;
}
@media (max-width: 600px) {
    .punimohi-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    .punimohi-popup-content {
        padding: 15px;
    }
}