/**
 * Technical Context Hint
 */
.technical-context {
    position: absolute;
    z-index: 99999;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    background-color: #f39c12;
    color: #ffffff;
    font-size: 12px;
    font-family: "Monaco", monospace;
}

.technical-context__close {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border: 0;
    border-radius: 2rem;
    font-size: inherit;
    opacity: 0.5;
    margin: 0;
    padding: 0;
}

.technical-context__close:hover {
    opacity: 1;
    cursor: pointer;
}

.technical-context__close::after {
    content: "\2715";
}

/* Dynamic position and color classes */
.technical-context--top-left {
    top: 0;
    left: 0;
}

.technical-context--top-right {
    top: 0;
    right: 0;
}

.technical-context--bottom-left {
    bottom: 0;
    left: 0;
}

.technical-context--bottom-right {
    bottom: 0;
    right: 0;
}

/* Color variant classes */
.technical-context--custom-colors {
    /* Colors will be set via CSS custom properties */
    background-color: var(--technical-context-bg-color, #f39c12);
    color: var(--technical-context-text-color, #ffffff);
}
