/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

/* Dashboard Styles */
.dashboard {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Table Styles */
#tug-status-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#tug-status-table th, 
#tug-status-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

#tug-status-table th {
    background-color: #2c3e50;
    color: white;
    font-weight: bold;
}

#tug-status-table tr:hover {
    background-color: #f5f5f5;
}

#tug-status-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        width: 95%;
    }
    
    #tug-status-table th, 
    #tug-status-table td {
        padding: 8px 10px;
    }
}