/* Container für Icon + Box oben rechts */
.support-info {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 20px;
    color: #333;
}

/* Die Box selbst */
.support-box {
    display: none;
    position: absolute;
    top: 36px;   /* etwas unter dem Icon */
    right: 0;
    padding: 4px 8px;
    background: #eef2f7;
    border: 1px solid #ccd;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
    width: fit-content;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.support-toggle {
    cursor: pointer;
    font-weight: bold;
    color: var(--main-dark);
    margin-left: 6px;
}

.edit-container {
    position: relative;
}