        body {
          font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
          font-weight: 400;
          margin: 0;
          background: #f5f5f5;
          display: flex;
          flex-direction: column;
          min-height: 100vh;
          transition: margin-left 0.5s;
        }  

        header {
            background: #000000;
            padding: 7rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: flex-start; 
            position: relative; 
            flex-wrap: wrap; 
            transition: margin-left 0.5s;
        }

        .logo-img { 
            height: 200px; 
            width: auto;
            flex-shrink: 0;
            display: block; 
            position: absolute; 
            left: 50%; 
            transform: translateX(-50%); 
            z-index: 10; 
        }

        /* Sidebar Styles */
        .sidebar {
            height: 100%;
            width: 0; 
            position: fixed;
            z-index: 1001; 
            top: 0;
            left: 0;
            background-color: rgba(51, 51, 51, 0.767); 
            overflow-x: hidden; 
            transition: 0.5s; 
            box-shadow: 2px 0 5px rgba(255, 255, 255, 0.3);
            display: flex; 
            flex-direction: column; 
            justify-content: space-between;
        }

        .sidebar.open {
            width: 260px;
        }

        .sidebar .sidebar-header {
            padding: 1rem;
            display: flex;
            justify-content: flex-end; 
            align-items: center;
            flex-shrink: 0;
        }

        .sidebar .close-sidebar-btn {
            font-size: 2rem; 
            color: #fff; 
            cursor: pointer;
            background: rgba(255, 255, 255, 0.1); 
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            line-height: 1;
            transition: background-color 0.3s, color 0.3s;
        }

        .sidebar .close-sidebar-btn:hover {
            background-color: #ff9800;
            color: #333;
        }

        .sidebar-content-wrapper {
            flex-grow: 1; 
            padding-bottom: 1rem; 
            overflow-y: auto; 
            padding-top: 1rem;
        }

        .sidebar .sidebar-buttons {
            display: flex;
            flex-direction: column;
            padding: 0 1rem; 
            gap: 0.8rem; 
        }

        .sidebar .sidebar-buttons .btn {
           
            color: white;
            padding: 0.8rem 1rem;
            text-align: left;
            width: 100%;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .sidebar .sidebar-buttons .btn:hover {
            background-color: #00000044; 
        }

        
        .sidebar-footer-links {
            padding: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: bold; 
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            flex-shrink: 0; 
        }

        .sidebar-footer-links a {
            color: #f1f1f1; 
            text-decoration: none;
            font-size: 0.9rem;
            padding: 0.3rem 0;
            transition: color 0.3s;
        }

        .sidebar-footer-links a:hover {
            color: #ff9800;
        }

       
        .hamburger-menu {
            background: none;
            border: 2px solid #333; 
            border-radius: 4px; 
            cursor: pointer;
            padding: 10px; 
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 50px;
            height: 50px;
            position: absolute; 
            left: 1rem; 
            z-index: 1002; 
            transition: border-color 0.3s, background-color 0.3s;
        }

        .hamburger-menu:hover {
            background-color: #f0f0f0; 
            border-color: #ff9800; 
        }

        .hamburger-menu .bar {
            width: 100%;
            height: 4px;
            background-color: #28c476; 
            border-radius: 2px;
            transition: all 0.3s ease-in-out;
        }

        body.sidebar-open #main-content {
            margin-left: 250px; 
        }

        body.sidebar-open header {
            margin-left: 250px; 
        }

        
        .button-group { 
            display: none; 
        }

        @media (max-width: 768px) {
            body.modal-open .hamburger-menu {
                display: none !important;
            }
            header {
                flex-direction: row; 
                justify-content: flex-start; 
                align-items: center; 
                padding: 1rem; 
                position: relative; 
            }
            .hamburger-menu {
                position: static; 
                margin-right: 1rem; 
                border: 1px solid #333; 
                width: 45px; 
                height: 45px;
                padding: 8px;
            }
            .hamburger-menu .bar {
                height: 3px; 
            }
           
            body.sidebar-open .hamburger-menu {
                display: none;
            }

            .logo-img { 
                position: static;
                transform: none;
                margin: 0;
                width: 200%; 
                max-width: 250px; 
                height: auto;
            }
            .sidebar {
                width: 0; 
                padding-top: 0; 
            }
            .sidebar.open {
                width: 100%; 
                background-color: rgba(51, 51, 51, 0.95); 
            }
            body.sidebar-open #main-content,
            body.sidebar-open header {
                margin-left: 0; 
            }
            .sidebar .sidebar-buttons .btn {
                font-size: 1.5rem; 
            }

            .sidebar .close-sidebar-btn {
                font-size: 2.5rem; 
                width: 50px;
                height: 50px;
            }

            .search-container input[type="text"] {
                width: 100%; 
                max-width: none; 
                padding: 0.8rem; 
                font-size: 1.1rem; 
            }
            .campaign-section {
                padding: 1rem; 
            }
            .carousel {
                flex-direction: column; 
                overflow-x: hidden; 
                scroll-snap-type: none; 
                padding: 0; 
                gap: 1rem; 
                margin: 0; 
            }
            .campaign {
                min-width: auto; 
                width: 100%; 
                margin: 0; 
                scroll-snap-align: none; 
                box-sizing: border-box; 
                height: auto; 
                max-height: none; 
            }
            .campaign:first-child { margin-left: 0; }
            .campaign:last-child { margin-right: 0; }
            .campaign img {
                height: auto; 
                max-height: 200px; 
            }
            .campaign p { 
                max-height: none;
                -webkit-line-clamp: unset;
                display: block;
            }
            .pagination-arrows {
                display: none;
            }
            .pagination-info {
                display: none;
            }
        }

        .btn {
            background: #28a745;
            color: rgb(255, 255, 255);
            padding: 0.5rem 1rem;
            font-weight: bold;
            border-radius: 3px;
            text-decoration: none;
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }

        .btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        h1, h2, h3, .logo {
            font-weight: 700;
            letter-spacing: -0.5px; 
        }

        .paypal {
            background: #0070ba;
        }

        .qr-code-btn {
            background: #f7931e; 
        }

        
        .campaign-section {
            position: relative; 
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
        }

        .carousel {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .campaign {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 1rem;
            display: flex; 
            flex-direction: column;
            overflow: hidden;
            position: relative; 
        }

       
        .campaign img {
            width: 100%;
            max-height: 150px; 
            border-radius: 4px;
            object-fit: cover;
        }

        .campaign h3 {
            margin: 0.5rem 0;
        }

        .campaign p {
            flex: 1; 
            font-size: 0.9rem;
        }

        .btn-secondary {
            background: #6c757d;
            margin-top: 0.5rem;
        }

        .search-container {
            padding: 1rem;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column; 
            align-items: center;
            gap: 10px; 
            z-index: 11; 
            position: relative; 
        }

        .search-container input[type="text"] {
            width: 100%; 
            padding: 0.5rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            max-width: 400px; 
        }

        .campaign.highlighted {
            border: 3px solid #ff9800; 
            box-shadow: 0 0 15px rgba(255, 152, 0, 0.5);
        }

        .highlight-label {
            background: #ff9800;
            color: white;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            z-index: 10;
        }

        footer {
            text-align: center;
            padding: 1rem;
            font-size: 0.8rem;
            color: #666;
            margin-top: auto;
            background: #fff;
        }

        footer img {
            width: 100px;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .modal-content {
            background: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            max-width: 580px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
        }
        .modal-content h2 { margin-top: 0; }
        .modal-content label { display: block; margin-top: 0.5rem; }
        .modal-content input, .modal-content textarea { width: 100%; padding: 0.5rem; margin-top: 0.25rem; border: 1px solid #ccc; border-radius: 4px; }
        .checkbox-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.5rem;
            justify-content: flex-end;
        }
        .checkbox-row span {
            flex-grow: 1;
            text-align: right;
        }
        .checkbox-row input[type="checkbox"] {
            width: auto;
            margin-top: 0;
        }
        .modal-content textarea {
            overflow: auto;
            resize: vertical;
        }
        .modal-footer { text-align: right; margin-top: 1rem; }

        @media (max-width: 480px) {
            
        }

        .pagination-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(-50%);
            pointer-events: none; 
            z-index: 5; 
            left: 0rem; 
            right: 1rem; 
            box-sizing: border-box; 
            padding: 0 1rem; 
        }

        .pagination-arrow {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid #ccc;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: background 0.3s, color 0.3s;
            pointer-events: auto; 
            margin: 0;
        }
        .pagination-arrow:hover {
            background: #eee;
            color: #000;
        }

        .pagination-arrow.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: rgba(255, 255, 255, 0.5);
        }

        .pagination-info {
            font-size: 0.9rem;
            color: #666;
            text-align: center;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .pagination-arrows {
                display: none;
            }
            .pagination-info {
                display: none;
            }
        }

        
        #boostModal .modal-content {
            max-width: 400px; 
            max-height: 75vh;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 5px solid transparent; 
            transition: border-color 0.3s ease-out;
        }

        #boostModal .modal-content img {
            max-width: 100%;
            height: auto;
            max-height: 300px; 
            border-radius: 8px;
            object-fit: contain; 
            margin-bottom: 1rem;
        }

        #boostModal .modal-content h2 {
            font-size: 2em;
            margin-bottom: 0.5rem;
        }

        #boostModal .modal-content p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            text-align: left; 
        }

        #boostModal .modal-content .btn {
            display: block; 
            width: fit-content; 
            margin: 0 auto; 
            padding: 0.8rem 1.5rem;
            font-size: 1.2em;
        }
        
        #boostModal .modal-content.final-boosted {
            border-color: #28a745; 
            box-shadow: 0 0 20px rgba(40, 167, 69, 0.7);
        }

        #boostButton {
            background-color: #000000; 
            color: #ff9800;
            padding: 10px 50px;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: bold;
            transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            border: none;
            cursor: pointer;
            width: fit-content;
        }

        #boostButton.golden-flash {
            background-color: #ff9800; 
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); 
            color: #333; 
            transform: scale(1.1); 
        }

        .boost-description {
            font-size: 0.9em;
            font-weight: bold;
            color: #666;
            margin-top: 5px; 
            text-align: center;
            width: 100%; 
        }
          .boost-highlight {
            color:  #ff9800; 
            font-weight: bold;
            
        }
/* Container um das GoFundMe-Widget */
.sidebar .gfm-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

/* Iframe selbst */
.sidebar .gfm-embed iframe {
    width: 100% !important; /* füllt Sidebar */
    max-width: 230px;       /* kleiner als Sidebar, damit es mittig ist */
    height: 420px !important; /* Höhe so, dass alles reinpasst */
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Mobil */
@media (max-width: 768px) {
    .sidebar .gfm-embed iframe {
        max-width: 350px;
        height: 450px !important;
    }
}