body {
    font-family: Arial, sans-serif;
    background: #1e1e1e;
    color: white;
    margin: 0;
    padding: 0;
}

header {
    background: #111;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#connectionStatus {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
}

.status.offline { background: #b30000; }
.status.online { background: #009900; }

.connect-box, .voice-box, .fms-box {
    padding: 20px;
    margin: 15px;
    background: #2a2a2a;
    border-radius: 10px;
}

input {
    padding: 10px;
    width: 60%;
    border-radius: 6px;
    border: none;
    margin-right: 10px;
}

button {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    background: #0078ff;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #005fcc;
}

.channel-buttons button {
    margin: 5px;
}

.info {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.8;
}

.fms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.fms-grid button {
    padding: 15px;
    font-size: 18px;
    border-radius: 8px;
}

.fms-status-1 { background: #2ecc71; }
.fms-status-2 { background: #3498db; }
.fms-status-3 { background: #f1c40f; }
.fms-status-4 { background: #e67e22; }
.fms-status-5 { background: #9b59b6; }
.fms-status-6 { background: #e74c3c; }
