/** @version 1.0.0 */
/* opgaver.css - Opgaver view styles */

.opgaver-selection {
    display: flex;
    flex-direction: column;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(16px * var(--ui-scale));
}

.loc-btn {
    aspect-ratio: 1 / 0.5;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: calc(16px * var(--ui-scale));
    font-weight: 950;
    font-size: 1.2rem;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
}

.loc-btn:active {
    transform: scale(0.95);
    background: rgba(29, 132, 214, 0.05);
}

.target-location-wrap {
    text-align: center;
    padding: calc(20px * var(--ui-scale)) 0;
    border-bottom: 1px solid var(--line);
    margin-bottom: calc(10px * var(--ui-scale));
}

.target-label {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.6;
    letter-spacing: 0.05em;
}

.target-location {
    font-size: 5rem;
    font-weight: 950;
    color: var(--brand);
    line-height: 1;
}

.item.is-oldest {
    background: rgba(29, 132, 214, 0.03);
}

.item-loc {
    font-size: 0.75rem;
    background: var(--line);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 700;
    vertical-align: middle;
}