.popMe-container {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 9999;
    font-family: Tahoma, Geneva, Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #222d3c;
    /* MODERN gradient glass background: */
    background: linear-gradient(120deg, rgba(237,245,255,0.95) 60%, rgba(224,242,255,0.82) 100%);
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(30,144,255,0.12), 0 2px 14px rgba(31,38,135,0.09);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    max-width: 340px;
    min-width: 0;
    opacity: 0;
    pointer-events: none;
    border: 1.2px solid rgba(200,220,255,0.19);
    backdrop-filter: blur(8px);
}

.popMe-container.active {
    opacity: 1;
    pointer-events: auto;
}

.popMe p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: inherit;
    font-weight: bold;
    color: #232b3a;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    text-align: center;
    text-shadow:
      0 1px 0 #fff,
      0 0 1px #232b3a,
      0 2px 4px rgba(0,0,0,0.08);
}

.popMe-container .action {
    background: none;
    border: none;
    color: #1E90FF;
    font-family: inherit;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    padding: 7px 16px;
    border-radius: 8px;
    transition: background 0.15s, color 0.12s;
    outline: none;
    margin-left: 10px;
}
.popMe-container .action:hover,
.popMe-container .action:focus {
    background: #eaf3ff;
    color: #005bcc;
}

@media (max-width: 600px) {
    .popMe-container {
        left: 8px;
        right: 8px;
        top: 10px;
        max-width: 99vw;
        padding: 10px 8px;
        font-size: 15px;
    }
    .popMe p {
        font-size: 15px;
    }
}