body {
    margin: 0;
    font-family: 'Consolas', monospace;
    background: #0f0f1a;
    color: #f0f0f0;
}

header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #0ff;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #0ff;
    z-index: 50;
}

.main-content {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.card {
    background: rgba(20, 20, 40, 0.95);
    padding: 2rem;
    border-radius: 10px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 0 20px #0ff, 0 0 40px #f0f;
}

h1, h2 {
    color: #0ff;
    text-shadow: 0 0 8px #f0f, 0 0 20px #0ff;
    margin-bottom: 1rem;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.card-inner {
    flex: 1 1 400px;
    min-width: 300px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #444;
}

.service-name {
    color: #0ff;
}

.service-status {
    font-weight: bold;
}

.inline-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.inline-form input[type="text"],
.inline-form select {
    flex: 1;
    padding: 0.5rem;
    background: #222;
    color: #0f0;
    border: 1px solid #0ff;
    border-radius: 4px;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 2px solid #0ff;
    color: #0ff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
    cursor: pointer;
}

.btn.small {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

.btn.tiny {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
}

.btn:hover {
    background: #0ff;
    color: #000;
}

.terminal-wrapper {
    background: #2e3436;
    color: #d3d7cf;
    font-family: monospace;
    border-radius: 5px;
    overflow: hidden;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0 5px #000;
}

.terminal {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    white-space: pre-wrap;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #2e3436;
    border-top: 1px solid #555;
}

.terminal-input-line .prompt {
    color: #729fcf;
    margin-right: 0.5rem;
}

.terminal-input-line input[type="text"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #d3d7cf;
    font-family: monospace;
    font-size: 1rem;
}

.output {
    color: #eeeeec;
}

.prompt-line {
    color: #729fcf;
}

.prompt-line .prompt {
    color: #729fcf;
}

.terminal::-webkit-scrollbar {
    width: 8px;
}

.terminal::-webkit-scrollbar-track {
    background: #2e3436;
}

.terminal::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.terminal::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.charts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.chart-container {
    background: #111;
    padding: 1rem;
    border-radius: 8px;
    width: 200px;
    text-align: center;
}

.chart-container canvas {
    width: 180px !important;
    height: 180px !important;
}
