/* Basic popup styles */
.ccp-popup-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.ccp-popup-content {
    background: #fff;
    padding: 20px 24px;
    border-radius: 8px;
    width: 320px;
    max-width: 90%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.ccp-popup-content h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
}

#ccp-country {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

#ccp-submit {
    padding: 8px 14px;
    border-radius: 4px;
    border: none;
    background: #0073aa;
    color: #fff;
    cursor: pointer;
}