/*
 * INFORMACIÓN DE UBICACIONES
 *
 * El nombre es el elemento principal.
 * La ruta física aparece debajo, de forma discreta.
 */

.location-button {
    align-items: center;
}


.location-copy {
    min-width: 0;
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}


.location-name,
.location-real-path {
    display: block;
    min-width: 0;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.location-name {
    color: var(--text);
    font-weight: 680;
    line-height: 1.2;
}


.location-real-path {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 480;
    line-height: 1.2;
}


.location-button:hover
.location-real-path {
    color: var(--text-soft);
}


.location-button.active
.location-real-path {
    color: #5c8199;
}
