/* app/static/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700&display=swap');

body {
    font-family: 'Exo 2', sans-serif;
}

/* Светлая тема - фон */
body.bg-custom-light {
    background-color: #F4F8FD;
}

/* Фирменный зеленый */
.green_light {
    background-color: #43A51C;
}
.text-green-brand {
    color: #43A51C;
}
.border-green-brand {
    border-color: #43A51C;
}

/* Анимация пульсации для статуса */
@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(67, 165, 28, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(67, 165, 28, 0); }
    100% { box-shadow: 0 0 0 0 rgba(67, 165, 28, 0); }
}
.live-indicator {
    animation: pulse-dot 2s infinite;
}

.bg_u_black {
    background-color: #43A51C;
}