#drop-screen {
    padding: 2rem;
}

#dropZone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    width: 100%;
    max-width: 900px;
    background: var(--bg-raised);
    padding: 1rem;
    height: 360px;
    text-align: center;
    vertical-align: middle;
    color: var(--text-muted);
    border: 1px dashed var(--border);
    border-radius: 1rem;

    &:hover {
        cursor: pointer;
    }

    &:hover,
    &.over {
        background: var(--sd-info-trans);
        color: var(--sd-info);
        border-color: var(--sd-info);
    }
}

#app {
    display: grid;
    grid-template-columns: 300px 1fr;

    &[hidden] {
        display: none;
    }

    section {
        padding: 1rem;
    }

    h2 {
        margin: 0;
    }
}

#sidebar {
    border-right: 1px solid var(--border);
}

#featList {
    display: flex;
    flex-direction: column;
}

#glyphGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.g-cell {
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
}

.feat-item {
    display: grid;
    grid-template-columns: auto 4ch 1fr;
    gap: .25rem;
    padding: .125rem .375rem;

    + .feat-item {
        border-top: 1px solid var(--border);
    }

    &:hover {
        cursor: pointer;
        background: var(--sd-primary-trans);
    }
}

.feat-tag {
    font-family: var(--sd-mono);
}

.feat-name {
    text-align: right;
}