.installation-selector {
    background-color: var(--md-code-bg-color);
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.selection-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    row-gap: 20px;
    column-gap: 20px;
    align-items: start;
}

.label {
    font-weight: bold;
    color: var(--md-typeset-color);
    padding-top: 10px;
}

.options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.option {
    background: var(--md-code-bg-color);
    border: 1px solid var(--md-typeset-color);
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    min-width: 120px;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    z-index: 1;
}

.option:hover:not(.disabled):not(.selected) {
    background: var(--md-code-fg-color);
    color: var(--md-code-bg-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.option.selected {
    background: var(--md-primary-fg-color);
    color: var(--md-primary-bg-color);
    border-color: var(--md-primary-fg-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
    pointer-events: none;
}

.option span {
    font-weight: 500;
}

.option small {
    font-size: 0.8em;
    opacity: 0.8;
    margin-top: 2px;
}

.command-output {
    background-color: var(--md-code-bg-color);
    padding: 0.2rem 0rem 0rem 0rem;
    border-radius: 4px;
    overflow-x: auto;
    max-width: 100%;
    position: relative;
    font-size: 16px;
}

.command-output pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.command-output code {
    display: block;
    white-space: nowrap;
    color: var(--md-typeset-color);
}

.requirements-output {
    background-color: var(--md-code-bg-color);
    padding: 0px;
    border-radius: 0px;
    overflow-x: auto;
    max-width: 100%;
    position: relative;
    left: 0px;
    color: var(--md-typeset-color);
    font-size: 18px;
}

.requirements-output pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.requirements-output code {
    padding: 0px;
    display: block;
    white-space: pre-line;
    color: var(--md-typeset-color);
    font-family: var(--md-text-font-family);
}

.requirements-output button {
    display: none;
}


/* .copy-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.copy-button:active {
    transform: translateY(0);
} */