body {
    margin: 0;
    font-family: "Trebuchet MS", sans-serif;
    background: #ffffff;
    color: #17232f;
}

.pulsating-image {
    max-width: 300px;
    margin: 25% auto;
    width: 50%;
    height: auto;
    display: block;
    animation: pulse 1.5s infinite;
}

.status {
    margin-top: 12px;
    font-size: 14px;
    color: #415466;
    text-align: center;
}

.status.error {
    color: #9a1f1f;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
