body {
    background-color: #f8f9fa;
}

/* Responsive Container */
.container {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* Headings */
h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #343a40;
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    font-size: 1.5rem;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.2rem;
    color: #343a40;
}

.total-amount {
    color: #FF0000;
    font-weight: bold;
}

.special-expense {
    color: #FF4500;
    font-weight: bold;
}

/* Sidebar Styling */
.sidebar {
    position: fixed;
    top: 80px;
    left: 0;
    width: 200px;
    padding: 10px;
    background-color: #f8f9fa;
    height: 100%;
    overflow-y: auto;
    border-right: 1px solid #ddd;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul ul li a {
    text-decoration: none;
    font-size: 14px;
}

.sidebar ul ul li a:hover {
    text-decoration: underline;
}

/* Make sidebar collapsible */
@media (max-width: 768px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .main-content {
        margin-left: 0;
    }
}

/* Table Styling */
.table-wrapper {
    overflow-x: auto;
}

.table {
    width: 100%;
    margin-top: 15px;
    background-color: #fff;
}

.table thead th {
    background-color: #f1f1f1;
    font-weight: bold;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }

    .table thead {
        font-size: 0.9rem;
    }

    .table tbody {
        font-size: 0.8rem;
    }
}

.hasis-expense   { color: #6a1b9a; font-weight: bold; }  /* Hier das neue Styling */
