﻿
.DIV_KOSTEN_KURZ {
   
}

.DIV_KOSTEN_LANG {
    
}


.audit-panel {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 400px;
    background-color: #fffaf0; /* beige, aber dezenter */
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.audit-panel-header {
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.audit-panel-body {
    flex: 1;
    overflow-y: auto; /* vertikale Scrollbar */
    overflow-x: hidden; /* keine horizontale */
}

.drag-handle {
    cursor: move;
    user-select: none;
    background: linear-gradient(#f8f9fa, #e9ecef);
}

.window-panel {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 400px;
    background-color: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 10;
}

    .window-panel.active {
        z-index: 9999;
    }


.audit-panel table td {
    max-width: 200px; /* optional, empfehlenswert */
    white-space: normal; /* Zeilenumbruch erlauben */
    word-wrap: break-word; /* alte Browser */
    overflow-wrap: break-word; /* moderne Browser */
}