body {
    background-color: skyblue;
}

/* Task Drag & Drop Visualisierung */
.task-drop-zone {
    min-height: 100px;
    border-radius: 4px;
}

.task-drop-zone-column {
    min-height: 200px;
}

/* Visuelle Hinweise für gesamte Spalte */
.task-drop-zone-column.drag-active {
    background-color: rgba(0, 123, 255, 0.1) !important;
    border-color: rgba(0, 123, 255, 0.5) !important;
}

.task-drop-zone-column.drag-over {
    background-color: rgba(0, 123, 255, 0.15) !important;
    border: 2px solid rgba(0, 123, 255, 0.7) !important;
}

.task-drop-zone-column.drop-success {
    background-color: rgba(40, 167, 69, 0.1) !important;
    border: 2px solid rgba(40, 167, 69, 0.7) !important;
}

/* Visuelle Hinweise für Drop-Zone */
.task-drop-zone.drag-active {
    background-color: rgba(0, 123, 255, 0.1) !important;
    border: 2px dashed rgba(0, 123, 255, 0.5);
}

.task-drop-zone.drag-over {
    background-color: rgba(0, 123, 255, 0.15) !important;
    border: 2px solid rgba(0, 123, 255, 0.7);
}

.task-drop-zone.drop-success {
    background-color: rgba(40, 167, 69, 0.1) !important;
    border: 2px solid rgba(40, 167, 69, 0.7);
}

.task-ghost {
    opacity: 0.4;
    background-color: rgba(0, 123, 255, 0.2);
}

.task-chosen {
    cursor: grabbing;
    transform: rotate(2deg);
}

.task-drag {
    opacity: 0.8;
}

/* Responsive Tabellen als Karten */
@media (max-width: 768px) {
    .table-mobile-cards thead {
        display: none;
    }

    .table-mobile-cards tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0.75rem;
        box-shadow: 0 4px 12px rgba(15, 34, 58, 0.08);
        overflow: hidden;
    }

    .table-mobile-cards tbody tr:last-child {
        margin-bottom: 0;
    }

    .table-mobile-cards tbody tr td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .table-mobile-cards tbody tr td:last-child {
        border-bottom: none;
    }

    .table-mobile-cards tbody tr td::before {
        content: attr(data-label);
        flex: 0 0 45%;
        font-weight: 600;
        text-transform: uppercase;
        color: #6c757d;
        margin-right: 0.5rem;
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }

    .table-mobile-cards tbody tr td[data-label="Aktionen"] {
        justify-content: center;
    }

    .table-mobile-cards tbody tr td .btn-group {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
}
