/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.container {
    width: 80%;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(44, 83, 100, 0.7);
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.logo {
    width: 350px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
h1 {
    color: #ffffff;
    font-size: 2em;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: #e0e0e0;
}
th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #3a5c6d;
}
th {
    background-color: #2c5364;
    color: #ffffff;
    text-transform: uppercase;
}
tr:hover {
    background-color: rgba(60, 110, 125, 0.5);
}
a {
    text-decoration: none;
    color: #e0e0e0;
}
a:hover {
    text-decoration: none;
    color: #e0e0e0;
    cursor: pointer;
}
 
.online {
    color: #38c172;
    font-weight: bold;
}
.offline {
    color: #e3342f;
    font-weight: bold;
}

/* The class for the table rows container */

/* Ensure the table body is always visible so the loader can be seen */
#status-table-body {
    opacity: 1;
}

/* Create a specific class for the rows that will fade in */
.fade-in-row {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.fade-in-row.visible {
    opacity: 1;
}

/* Styling for the loader to make it stand out */
.loading-message {
    color: #72B9D1;
    font-style: italic;
    padding: 20px;
    opacity: 1 !important; /* Force visibility */
}
