:root {
    color-scheme: dark;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #000;
    color: #fff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #000;
    color: #fff;
}

.dashboard-shell {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px;
}

.launcher-panel {
    width: min(100%, 540px);
    margin: 80px auto 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: #000;
    box-shadow: none;
}

.launcher-label {
    display: block;
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.launcher-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

select,
button {
    width: 100%;
    min-height: 56px;
    padding: 16px 18px;
    border: 1px solid #fff;
    border-radius: 12px;
    background: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
}

select {
    appearance: none;
    background-color: #000;
    background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% - 2px), calc(100% - 16px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 44px;
}

select:focus-visible,
button:focus-visible {
    outline: none;
}

button {
    width: 180px;
    text-align: center;
    flex-shrink: 0;
    background: #fff;
    color: #000;
}

select:hover,
button:hover,
select:focus-visible,
button:focus-visible {
    background: #111;
    border-color: #fff;
}

button:hover,
button:focus-visible {
    background: #fff;
    color: #000;
}

button:active {
    transform: none;
}

@media (max-width: 540px) {
    .dashboard-shell {
        padding: 22px 16px 30px;
    }

    .launcher-panel {
        margin-top: 36px;
        padding: 18px;
    }

    .launcher-controls {
        flex-direction: column;
        align-items: stretch;
    }

    button {
        width: 100%;
        font-size: 0.97rem;
        padding: 16px 18px;
    }

    select {
        font-size: 0.97rem;
        padding: 16px 18px;
    }
}
