body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 30px;
}

.section {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

h2 {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background-color: #e9f5ff;
    border: 1px solid #b3e0ff;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card h3 {
    margin-top: 0;
    color: #004085;
}

.card p {
    margin: 5px 0;
}

.status-LoggedIn {
    background-color: #d4edda;
    border-color: #28a745;
}

.status-Ready {
    background-color: #d4edda;
    border-color: #28a745;
}

.status-NotReady {
    background-color: #fff3cd;
    border-color: #ffc107;
}

.status-LoggedOut {
    background-color: #f8d7da;
    border-color: #dc3545;
}

.status-Unknown {
    background-color: #e2e3e5;
    border-color: #6c757d;
}