.proxy-detector-container {
background-color: #000;
color: #fff;
font-family: "Courier New", monospace;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
line-height: 1.5;
margin-bottom: 20px;
}
.proxy-detector-container h4 {
margin: 0;
}
.pulse {
display: inline-block;
position: relative;
margin-left: 8px;
border-radius: 50%;
width: 10px;
height: 10px;
animation: pulse 1.5s infinite;
}
.pulse.vpn,
.pulse.proxy {
background-color: #37de8f;
}
.pulse.no-vpn,
.pulse.no-proxy {
background-color: #7c71f8;
}
@keyframes pulse {
0% {
transform: scale(0.9);
opacity: 1;
}
100% {
transform: scale(1.1);
opacity: 0;
}
}