body {
    background-color: #121212;
    color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
}

.bg-brown {
    background-color: #8B5A2B;
    color: white;
}

.password-container {
    display: flex;
    align-items: center;
}

.table th, .table td {
    vertical-align: middle;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Animation für Farbverläufe */
.navbar-brand,
.card-header {
    background: linear-gradient(90deg, #ff4655 0%, #dc1f2d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    text-shadow: 0 0 8px rgba(255, 70, 85, 0.7);
}

/* Hover-Effekte für Buttons */
.btn-danger {
    background-color: #ff4655;
    border-color: #ff4655;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #dc1f2d;
    border-color: #dc1f2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 31, 45, 0.4);
}

/* Animierter Hintergrund für Login/Register */
.card-header.bg-danger {
    background: linear-gradient(45deg, #ff4655, #dc1f2d);
    box-shadow: 0 4px 8px rgba(220, 31, 45, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
    background: #ff4655;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #dc1f2d;
}

/* Sortierung */
.drag-handle {
    cursor: grab;
    padding: 8px;
}

.drag-handle:active {
    cursor: grabbing;
}

.sort-mode .sort-handle-column {
    display: table-cell !important;
}

.sort-mode tbody tr {
    cursor: move;
}