html, body {
    height: 100%;
    margin: 0;
    background: #313338;
    color: #dbdee1;
    font-family: system-ui, sans-serif;
}

.app {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 240px;
    background: #1e1f22;
    padding: 12px;
}

.content {
    flex: 1;
    display: flex;
}

.chat {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.message {
    margin-bottom: 8px;
}

.username {
    font-weight: 600;
    margin-right: 6px;
}

.input {
    padding: 12px;
    background: #383a40;
}

.input input {
    width: 100%;
    padding: 10px;
    background: #1e1f22;
    border: none;
    color: white;
    border-radius: 6px;
}
.voice-panel {
    position: fixed;
    top: 12px;
    left: 12px;
    width: 260px;
    background: #1e1f22;
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;
}

.voice-panel.hidden {
    display: none;
}

.voice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.voice-controls button {
    margin-left: 6px;
}
.voice-user {
    background: #2b2d31;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.voice-users {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
