/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2c3e50; /* Dark background color */
    color: #bdc3c7; /* Dimmer text color */
}

table, th, td {
  border: 2px solid #182939;
  border-collapse: collapse;
}
th, td {
  padding: 10px;
}

.card {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px;
    background-color: #34495e; /* Darker background for container */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Slightly darker shadow */
    margin-top: 20px;
}

h1, h2, h3, h4 {
    color: #bdc3c7; /* Dimmer text color */
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
    color: #bdc3c7; /* Dimmer text color */
}

#host_metrics_column td {
  list-style: none;          /* removes the numeric markers */
  padding-left: 0;           /* remove the default left indent */
  margin-left: 0;            /* remove the default left margin */
}

#host_metrics_table tbody tr td :nth-of-type(even) {
     background-color: #3e5c78;  
}
