﻿.video-column {
    background-size: cover;
    background-position: center;
    background-color: transparent;
    color: #fff;
    padding: 0;
}

.location-header {
    align-items: center;
    padding: 0.2rem;
    margin-left: 2px;
    border: none;
    display: flex;
    text-decoration: underline;
}

.location-details {
    padding: 0.1rem;
    color: #f0f0f0;
}

    .location-details .location-stat {
        margin: 0.5rem 0;
        font-size: 1rem;
        display: flex;
        align-items: center;
    }
        .location-details .location-stat:hover {
            filter: drop-shadow(0 0 2px lightsteelblue);
            cursor: pointer;
        }

    .location-details .stat-label {
        font-weight: bold;
        margin-right: 0.5rem;
        align-items: center;
    }

    .location-details .stat-value {
        margin-right: 1rem;
        align-items: center;
    }

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

.item-set {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}

.item-entry {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    
    position: relative;
}

    .item-entry:not(:last-child)::after {
        content: "|";
        margin: 0 0.5rem;
        color: #888;
    }

.item-count {
    margin-left: 0.25rem;
    font-weight: bold;
    color: #ccc;
}

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

.chest-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.chest-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
    font-size: 0.95rem;
}

    .chest-item:not(:last-child)::after {
        content: "|";
        margin: 0 0.5rem 0;
        color: #888;
    }

    .chest-item:hover {
        filter: drop-shadow(0 0 2px lightsteelblue);
    }

.map-items-toggle {
    position: relative;
    margin: 0.5rem 0.5rem 0;
    display: flex;
    width: 100px;
    height: 30px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #222;
    overflow: hidden;
}

    .map-items-toggle .indicator {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        background: steelblue;
        transition: left 0.25s ease;
    }

    .map-items-toggle span {
        flex: 1;
        z-index: 1;
        text-align: center;
        line-height: 30px;
        color: #aaa;
        cursor: pointer;
        user-select: none;
    }

        .map-items-toggle span.selected {
            color: #fff;
        }

    .map-items-toggle .toggle-label {
        margin: 0 0.5rem 0 0;
        color: #ccc;
        user-select: none;
    }