/* Menú contextual de las ubicaciones laterales. */

.carajillo-location-context {
    position: fixed;
    z-index: 16000;

    min-width: 210px;
    padding: 6px;

    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;

    box-shadow:
        0 18px 45px
        rgba(36, 66, 88, 0.22);
}


.carajillo-location-context[hidden] {
    display: none;
}


.carajillo-location-context button {
    width: 100%;

    display: flex;
    align-items: center;

    padding: 9px 11px;

    color: var(--text);
    background: transparent;
    border: 0;
    border-radius: 8px;

    text-align: left;
    cursor: pointer;
}


.carajillo-location-context button:hover {
    background: var(--surface-blue);
}


.carajillo-location-context button.danger {
    color: var(--danger);
}
