﻿.glitch-detail {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    align-items: center;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.glitch-detail {
    overflow-y: auto;
    background-color: #1e1e1e;
    color: #f0f0f0;
    margin: 20px;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

    .glitch-detail h2 {
        margin-top: 0;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.25rem;
    }

    .glitch-detail h4 {
        margin-top: 1.25rem;
        margin-bottom: 0.5rem;
        color: #bbb;
        text-decoration: underline;
    }

.glitch-detail-content {
    display: flex;
    gap: 2rem;
}

.glitch-detail-items,
.glitch-detail-info {
    overflow-y: auto;
}

.glitch-detail-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #333;
    align-items: center;
    justify-content: start;
    padding-right: 1rem;
}

.glitch-detail-info {
    flex: 2;
    padding-left: 1rem;
}

.requirement-line {
    margin: 0.5rem 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .requirement-line img {
        vertical-align: middle;
    }

.or-text {
    display: block;
    margin-top: 0.25rem;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: steelblue;
}

.glitch-detail-info .difficulty {
    font-weight: bold;
    margin: 0.5rem 0;
}

    .glitch-detail-info .difficulty.easy {
        color: green;
    }

    .glitch-detail-info .difficulty.intermediate {
        color: goldenrod;
    }

    .glitch-detail-info .difficulty.advanced {
        color: red;
    }

    .glitch-detail-info .difficulty.pro {
        color: rebeccapurple;
    }

.glitch-description {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0.5rem 0;
    margin-left: 5px;
}

.notes-list,
.instruction-list {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}
    .notes-list li,
    .instruction-list li {
        margin-bottom: 0.5rem;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
    }

.inline-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin: 0 0.25rem;
}

.glitch-ref {
    color: #1b6ec2;
    text-decoration: none;
    border-bottom: 1px dashed #1b6ec2;
}

    .glitch-ref:hover {
        color: #fff;
        background: #1b6ec2;
    }
