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

.container {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

button {
    background-color: #FF0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #CC0000;
}

.adapter-button {
    background-color: #2980b9;
}

.adapter-button:hover {
    background-color: #1c5c87;
}

#status {
    margin-top: 20px;
    font-size: 14px;
}

#environment-indicator {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    color: white;
    border-radius: 4px;
    font-weight: bold;
    z-index: 9999;
}

.is-node-true {
    background-color: #ff6b6b;
}

.is-node-false {
    background-color: #51cf66;
}