 /* Container Styling */
 .container {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.sidebar {
    position: fixed;
    top: 100px;
    left: 0;
    width: 210px;
    padding: 10px;
    background-color: #f8f9fa;
    height: 100%;
    overflow-y: auto;
    border-right: 1px solid #ddd;
}

.main-content {
    margin-left: 220px;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li strong {
    font-size: 16px;
    margin-bottom: 5px;
}

.sidebar ul ul {
    list-style-type: none;
    margin-left: 15px;
}

.sidebar ul ul li a {
    text-decoration: none;
    font-size: 14px;
}

.sidebar ul ul li a:hover {
    text-decoration: underline;
}

/* Eingabefeld für die Summe verkleinern */
.sum-input {
    width: 60px;
    text-align: right;
}

.input-group {
    width: 160px;
}

.save-btn {
    display: none; /* Verstecke den Speichern-Button standardmäßig */
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
    text-align: center;
}

.table {
    margin-top: 20px;
}

body {
    background-color: #f8f9fa;
}

.btn {
    margin-right: 10px;
}
.highlight td {
background-color: #cce5ff !important; /* Hellblauer Hintergrund */
transition: background-color 2s ease; /* Weicher Übergang in 2 Sekunden */
}
/* Normale Zeilen ohne Highlight */
tr td {
    background-color: white; /* Standard-Hintergrund */
    transition: background-color 2s ease; /* Weicher Übergang beim Zurückwechseln */
}