/* Version: 5 */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #2b2b3d;  /* Muted dark blue-gray background */
    color: #e0e0e0; /* Soft white text */
    margin: 0;
    padding: 0;
}

/* Header Styling */
.main-header {
    background-color: #3b3b5f; /* Muted deep blue */
    padding: 15px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Header Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Small Logo */
.logo-small {
    height: 40px;  /* Smaller logo */
    width: auto;
    margin-right: 15px;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #FFD700; /* Gold text */
    padding: 5px 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Centered Container */
.container {
    width: 80%;
    margin: 40px auto;
    text-align: center;
    background-color: #404060; /* Dark muted blue */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Centered Table */
.monitor-table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #3b3b5f; /* Dark muted blue */
    color: #e0e0e0;
}

.monitor-table th,
.monitor-table td {
    border: 1px solid #58587a; /* Softer blue-gray */
    padding: 10px;
    text-align: center;
}

.monitor-table th {
    background-color: #50507a; /* Medium muted blue */
    color: white;
}

/* Status Colors */
.status-ok {
    color: #6dd47e; /* Soft green */
    font-weight: bold;
}

.status-warn {
    color: #ffcc66; /* Soft orange */
    font-weight: bold;
}

.status-error {
    color: #e57373; /* Muted red */
    font-weight: bold;
}

/* Buttons */
button {
    padding: 10px 15px;
    background-color: #FFD700;
    border: none;
    color: black;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #daa520;
}

/* Forms */
form {
    margin-top: 20px;
}

input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #2b2b3d;
    color: #e0e0e0;
}

