body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    text-align: center;
}

h1 {
    grid-column: span 2;
    margin-bottom: 20px;
}

select {
    padding: 10px;
    font-size: 1.2em;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333;
    width: 150px;
    cursor: pointer;
    transition: all 0.3s ease;
}

select:hover {
    border-color: #28a745;
}

select:focus {
    outline: none;
    border-color: #007bff;
}

option {
    padding: 10px;
    background-color: #0392;
    color: #333;
}

.status-display {
    padding: 10px;
    font-size: 1.2em;
    border-radius: 5px;
}

.active {
    background-color: #28a745;
    color: white;
}

.inactive {
    background-color: #8e8e8e;
    color: white;
}

.idle {
    background-color: #ffc107;
    color: white;
}

.busy {
    background-color: #dc3545;
    color: white;
}

@media (max-width: 750px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    h1 {
        grid-column: span 1;
    }
}