﻿
:root {
--main_color: #1e4e6a;
--focus_color: #338bc2; 
--background_image: url(/assets/images/background.jpg);
}

body {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
body::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

#building_tabs {
    overflow-x: scroll;
}

.built-tab {
    text-wrap: nowrap;
}

.status-indicator {
    display: inline-block;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.status-running {
    background-color: #4CAF50;
    box-shadow: 0 0 0 rgba(76, 175, 80, 0.4);
    animation: pulse-green 2s infinite;
}

.status-stopped {
    background-color: #F44336;
}

@keyframes pulse-green {
    0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}
