#we-custom-geoip-poc-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.we-custom-geoip-poc-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: we-custom-geoip-poc-spin 1s linear infinite;
}

@keyframes we-custom-geoip-poc-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.we-custom-geoip-poc-content {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
}