﻿.popup-container {
    position: relative;
    display: inline-block;
}

.popup-trigger {
    cursor: pointer;
}

.popup-content {
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
}

.popup-container:focus-within .popup-content {
    display: block;
}

.no-wrap-150 {
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tenant-watermark-overlay {
    position: fixed;
    bottom: 24px;
    right: 24px;
    pointer-events: none;  /* Makes it non-interactive */
    opacity: 0.2;
    z-index: 1000;
    text-align: right;
}

.tenant-name {
    font-size: 14px;
    font-weight: 500;
}

.tenant-details {
    font-size: 12px;
}