#dashboard {
    display: grid;
    grid-template-columns: 20% 1fr 10%; 
    min-height: 0;
    overflow: hidden;
}

#left {
    overflow-y: auto;
    border-right: 1px solid var(--yellow);
}

#right {
    overflow-y: auto;
}

h2 {
    padding: 7px 10px;
    margin: 0;
    color: var(--yellow);
    font-size: 13px;
}

a {
    color: var(--cyan);
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: var(--green);
}

.signal {
    padding: 10px 15px; 
    border-top: 1px solid var(--mute);
}

.signal:first-of-type {
    border-top: 0;
}

.signal-head {
    display: flex;
    align-items: center;
    gap:10px;
    margin-bottom: 10px;
}

.indicator {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    background: var(--magenta);
    border-radius: 50%;
}

.signal a {
    color: var(--yellow);
}

.signal a:hover {
    color: var(--cyan);
}

.signal p {
    margin: 0 0 8px;
    line-height: 1.25;
}

.address {
    color: var(--grey);
    font-size: 12px;
}

.directory-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 7px 10px;
    border-bottom: 1px solid var(--yellow);
}

.directory-head h2 {
    padding: 0;
}

.directory-head span {
    color: var(--grey);
    font-size: 12px;
}

.category {
    border-bottom: 1px solid var(--yellow);
}

.category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    background: #111;
}

.category-title a {
    color: var(--yellow);
}

.category-title a::before {
    content: "> ";
    color: var(--yellow);
}

.category-title span {
    color: var(--grey);
    font-size: 12px;
}

.link {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(0, 2fr);
    gap: 15px;
    padding: 5px 10px;
}

.link:nth-child(even) {
    background: var(--mute);
}

.link a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link span {
    text-align: right;
    color: var(--white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}