.atom-container {
    display: flex;
    padding: 10px;
    background: white;
}

.atom-container ~ .atom-content {
    gap: 10px;
    padding: 10px;
}

.container-float-fix {
    z-index: 9999 !important;
}

.atom-container-dropzone-hover > .atom-wrapper > .atom-container {
    box-shadow: var(--fermat-color-accent300) 0px 0px 0px 2px !important;
}

.atom-content-drop-indicator {
    display: inline-block;
    background: var(--fermat-color-accent300);
    position: fixed;
    z-index: 999;
}
.direction-horizontal .atom-content-drop-indicator {
    width: 4px;
    right: 5px;
    height: 80%;
    top: 12%;
}
.direction-vertical .atom-content-drop-indicator {
    width: 80%;
    bottom: 5px;
    height: 4px;
    left: 12%;
 }

.atom-container-placeholder {
    flex: 1;
    border: 1px dashed pink;
    color: #A2A2A2;
    white-space: pre;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
}

.atom-frame {
    pointer-events: auto;
}

.atom-pass-through-area {
    position: absolute;
    width: calc(100%);
    height: calc(100%);
    top: 0;
    left: 0;
}

.atom-frame-dropzone-hover {
    box-shadow: 0 0 0 1px black;
}

.atom-frame-hover {
    transition: 0.3s;
}

.atom-frame-tooltip {
    position: absolute;
    left: 0;
    top: -30px;
    height: 24px;
    width: fit-content;
    min-width: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    pointer-events: all;
    border: none !important;
    user-select: none;
    border-radius: 4px
}

.atom-frame-title {
    font-size: 14px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: text;
    padding: 0 6px;
}

.atom-frame-title:focus {
    text-overflow: unset;
}
