.sjc-card {
max-width: 320px;
margin: 30px auto;
padding: 25px;
border-radius: 16px;
background: #ffffff;;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
text-align: center;
font-family: system-ui;
}
.sjc-card h2 {
margin-bottom: 20px;
font-size: 20px;
} .sjc-progress {
position: relative;
margin: 20px 0;
}
.sjc-progress svg {
transform: rotate(-90deg);
}
circle {
fill: none;
stroke-width: 10;
}
circle.bg {
stroke: #eee;
}
circle.progress {
stroke: #6c63ff;
stroke-linecap: round;
stroke-dasharray: 377;
stroke-dashoffset: 377;
transition: stroke-dashoffset 0.4s ease;
}
.sjc-count {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 28px;
font-weight: bold;
} .sjc-actions {
margin-top: 15px;
}
.sjc-actions button {
padding: 10px 16px;
margin: 5px;
border: none;
border-radius: 8px;
cursor: pointer;
transition: 0.3s;
}
.sjc-actions button.primary {
background: #6c63ff;
color: #fff;
}
.sjc-actions button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.sjc-target {
font-size: 14px;
color: #777;
}