.petshop-store-status {
    display: inline-block;
    padding: 6px 12px;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-align: center;
    max-width: 350px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.petshop-store-status.open {
    background: rgba(0, 128, 0, 0.2);
    color: #006400;
    border: 1px solid rgba(0, 128, 0, 0.3);
}
.petshop-store-status.closed {
    background: rgba(139, 0, 0, 0.2);
    color: #8B0000;
    border: 1px solid rgba(139, 0, 0, 0.3);
}
.petshop-store-status.warning {
    background: rgba(255, 165, 0, 0.2); /* Orange background */
    color: #FFA500; /* Orange text */
    border: 1px solid rgba(255, 165, 0, 0.3); /* Orange border */
}
.petshop-store-status:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}
#petshop-status-update.loading::after {
    content: '↻';
    display: inline-block;
    margin-left: 5px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}