/* /var/www/monitor/style.css */

body {
    background: #222;
    color: #fff;
    font-family: monospace;
    padding: 20px;
}

h1 {
    padding-top: 0px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.box {
    border: 2px solid #444;
    padding: 20px;
    border-radius: 10px;
}

.success {
    color: #4caf50;
}

.error {
    color: #f44336;
}

.metric {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

.progress-bar-bg {
    width: 100%;
    height: 20px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-bar-fill {
    height: 100%;
    background-color: #4caf50;
    transition: width 0.5s ease, background-color 0.5s ease;
}