/* ============================================================================
 * 02-install-helm/style.css — clone du pattern install-methods Linux
 * ============================================================================ */

.methods-grid {
    left: 5%; top: 22%;
    width: 42%; height: 68%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.m-side {
    left: 52%; top: 22%;
    width: 43%; height: 48%;
}

.m-term {
    left: 52%; top: 74%;
    width: 43%; height: 16%;
    font-size: 0.78rem;
}
.m-term .tbody {
    padding: 8px 12px;
    white-space: pre;
    overflow: hidden;
}
.m-term .tbody .cmd {
    white-space: pre;
    line-height: 1.5;
}

.m-compare {
    position: absolute;
    left: 52%; top: 22%;
    width: 43%; height: 68%;
    padding: 18px 20px;
    background: linear-gradient(145deg, #0f1420, #1a2030);
    border: 1px solid var(--border);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s;
}
.m-compare.show { opacity: 1; }
.m-compare table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    font-size: 0.88rem;
}
.m-compare th {
    text-align: left;
    padding: 8px 10px;
    color: var(--cyan);
    border-bottom: 1px solid var(--border);
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.m-compare td {
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--text);
}
.m-compare td:last-child {
    font-family: 'Courier New', monospace;
    color: var(--green);
    font-size: 0.82rem;
}
