.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

.status-online {
    background-color: #71dd37;
    /* Green */
}

.status-offline {
    background-color: #ff3e1d;
    /* Red */
}

.status-unknown {
    background-color: #8592a3;
    /* Gray */
}

/* Table improvements */
.table {
    border-collapse: separate;
    border-spacing: 0 10px;
    /* Adds space between rows */
}

.table tbody tr {
    background-color: #fff;
    /* White background for rows */
    border-radius: 8px;
    /* Rounded corners for rows */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
    /* transition: all 0.2s ease-in-out; */
}


.table th,
.table td {
    padding: 12px 15px;
    /* More padding for better spacing */
    vertical-align: middle;
    border-top: none;
    /* Remove default top border */
}

.table thead th {
    border-bottom: 2px solid #e9ecef;
    /* Stronger bottom border for header */
    font-weight: 600;
    color: #566a7f;
}

.table-responsive {
    overflow-x: auto;
}