@keyframes blink {
    0% {opacity: 1;}
    50% {opacity: 0.5;}
    100% {opacity: 1;}
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: blink 1s linear infinite;
}

.centered-heading {
    text-align: center;
    color: #333;
    font-size: 24px;
    font-weight: bold;
}