/* Utilities */
.divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    margin: 0 4px;
}

.divider.horizontal {
    width: 100%;
    height: 1px;
    margin: 0;
}

.hidden {
    display: none !important;
}

.w-full {
    width: 100%;
}

.mt-2 {
    margin-top: 8px;
}

.mb-3 {
    margin-bottom: 12px;
}

/* Custom Dynamic Tooltips */
.dynamic-tooltip {
    position: fixed;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    border-radius: 4px;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.2s;
}

.dynamic-tooltip.show {
    opacity: 1;
}