.dash {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    overflow-x: hidden;
}

.gauge-wrap {
    position: relative;
    width: 320px;
    height: 320px;
}

#gc {
    display: block;
}

.btn-mic {
    background: transparent;
    border: 1px solid #444;
    border-radius: 4px;
    color: #aaa;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: Arial, sans-serif;
}

.btn-mic:hover {
    border-color: #cc0000;
    color: #cc0000;
}

.btn-mic.active {
    border-color: #cc0000;
    color: #cc0000;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #333;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.status-dot.on {
    background: #cc0000;
    box-shadow: 0 0 5px #cc0000;
}

.stats-row {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.stat-val {
    color: #cc0000;
    font-size: 15px;
    font-family: 'Arial Narrow', Arial, sans-serif;
}

.cal-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cal-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 4px;
}

.cal-val {
    color: #aaa;
    font-size: 13px;
    font-family: 'Arial Narrow', Arial, sans-serif;
    min-width: 52px;
    text-align: center;
}

.btn-cal {
    background: transparent;
    border: 1px solid #333;
    border-radius: 4px;
    color: #666;
    font-size: 16px;
    width: 32px;
    height: 32px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.15s;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cal:hover {
    border-color: #888;
    color: #ccc;
}

.btn-cal:active {
    background: #1a1a1a;
}

.controls-row {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 340px;
}

.btn-peak {
    background: transparent;
    border: 1px solid #444;
    border-radius: 4px;
    color: #aaa;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: Arial, sans-serif;
}

.btn-peak:hover {
    border-color: #cc7700;
    color: #cc7700;
}

.btn-peak.active {
    border-color: #ff9900;
    color: #ff9900;
}

.peak-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #333;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.peak-dot.on {
    background: #ff9900;
    box-shadow: 0 0 5px #ff9900;
}

.btn-reset {
    background: transparent;
    border: 1px solid #444;
    border-radius: 4px;
    color: #aaa;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: Arial, sans-serif;
}

.btn-reset:hover {
    border-color: #888;
    color: #ccc;
}