body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}

.status-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

.status-header {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.status-card .status-description {
    margin: 10px 0 0;
    color: #666;
    font-size: 1rem;
}

.status-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

.status-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.status-card-content {
    flex-grow: 1;
}

.status-alias {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.status-info {
    margin: 10px 0 0;
    color: #666;
}

.status-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* Status color coding */
.green .status-indicator {
    background-color: #28a745;
}

.yellow .status-indicator {
    background-color: #ffc107;
}

.grey .status-indicator {
    background-color: #6c757d;
}

.light-grey .status-indicator {
    background-color: #e2e3e5;
}

.white .status-indicator {
    background-color: #ffffff;
}

.status {
    font-weight: bold;
}
