@font-face {
    font-family: 'Vazirmatn';
    src: url('/static/Vazir.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
body, h1, h2, h3, h4, h5, h6, p, a, button, input, select, textarea {
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif !important;
}
body { font-family: 'Vazirmatn', sans-serif; background-color: #f8f9fa; }
.status-up { color: #198754; font-weight: bold; }
.status-down { color: #dc3545; font-weight: bold; }
.status-pending { color: #fd7e14; }
.status-paused { color: #6c757d; font-weight: bold; }
.live-dot {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    margin-left: 5px;
    animation: pulse 1.5s infinite;
}
.live-dot.up { background-color: #198754; }
.live-dot.down { background-color: #dc3545; }
.live-dot.paused { background-color: #6c757d; animation: none; }
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
