#cf-worker-logo {
    position: absolute;
    top: -80px;
    left: 50%;
    margin-left: -40px;
    width: 80px;
    z-index: 10002;
}

#cf-worker-logo svg {
    width: 100%;
    height: auto;
    fill: #0b3947;
}

#cf-worker-bubble {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: #0b3947;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    user-select: none;
}

#cf-worker-bubble:hover {
    transform: scale(1.05);
}

#cf-worker-popup {
    /* Hidden by default */
    display: none;
    position: fixed;
    top: calc(50% + 30px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 640px;
    height: 80vh;
    max-height: 500px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 0 99999px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    padding: 10px;
    box-sizing: border-box;
    flex-direction: column;
}

#cf-worker-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f1f1f1;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    z-index: 10001;
    color: #555;
}

#cf-worker-popup-close:hover {
    background: #ddd;
}

#cf-worker-popup-iframe {
    width: 100%;
    height: 100%;
    border: none;
    padding-top: 60px;
    padding-bottom: 15px;
    box-sizing: border-box;
}