@font-face {
    font-family: 'Inter';
    src: url('../font/Inter-VariableFont_slnt,wght.ttf') format('truetype');
    font-weight: 100 900; /* Variable SchriftstÃ¤rke */
    font-style: normal;
}

:root {
    --fk-gruen:#018c54;
}

* {
    box-sizing: border-box;
    font-family: Inter;
}


html {
    overflow: hidden;
}

body {
    font-family: Inter, Arial, sans-serif;
    margin: 0;
    /*padding-top: 20px;*/
    display: flex;
    flex-direction: column;
    min-height:100dvh;
}

* Allgemeiner Stil für Scrollleisten */
::-webkit-scrollbar {
    width: 12px;
}

/* Hintergrund der Scrollleiste */
::-webkit-scrollbar-track {
    /*background: var(--scrollbar-track-bg, var(--chat-container));*/
    background:#ddd;
    border-radius: 6px;
}

/* Farbe des Scrollbalkens */
::-webkit-scrollbar-thumb {
    /*background-color: var(--scrollbar-thumb-bg, var(--rot));*/
    background-color: #333;
    border-radius: 6px;
}

/* Hover-Effekt für den Scrollbalken */
::-webkit-scrollbar-thumb:hover {
    /*background-color: var(--scrollbar-thumb-hover-bg, var(--gruen));*/
    background-color: #555;
}

/* Scrollbar für Firefox */
* {
    scrollbar-width: thin;
    /*scrollbar-color: var(--scrollbar-thumb-bg, var(--rot)) var(--scrollbar-track-bg, var(--bg-user-message));*/
    scrollbar-color: #333 #ddd;
}

.projekte-container {
    height: calc(100dvh - 70px);
    background-color: #eeeeee;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    box-shadow: 1px 7px 9px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 10px 10px;
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow-y: auto;
    border: 0px;
    margin: 0 auto;
    text-align: center;
}

.projekte-container label {
    display: block;
    text-align: left;
}

.project-list {
    gap: 10px;
    display: flex;
    opacity: 1;
    flex-direction: column;
}

.chats-container {
    max-height: 100dvh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    /* padding: 20px; */
    box-shadow: 1px 7px 9px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 10px 10px;
    position: relative;
    width: 100%;
    max-width: 500px;
    /* overflow-y: auto; */
    border: 0px;
    margin: 0 auto;
}

.projekt {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: left;
}

.weitere .projekt .projekt-logo {
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity:.6;
    -webkit-filter: grayscale(100%) contrast(0.6);
}

.weitere .projekt {
    background: #ddd;
}

.weitere .projekt:hover .projekt-logo {
    filter:grayscale(0%);
    opacity: 1;
    -webkit-filter: grayscale(0%) contrast(1);
}

.weitere .projekt:hover {
    background: #eee;
}

.weitere .projekt-description, .weitere .projekt-titel {
    color:#444;
}

.projekt.inaktiv {
    background-color:#bbb;
}

.projekt-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color:#000;
}

.projekt-logo {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
}

.projekt-titel {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.projekt-beschreibung {
    margin: 0;
    font-size: 14px;
    color: gray;
}

.projekt-description {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    font-size: 80%;
  }

  .admin .projekt-suche {
    display: block!important;
    }

.projekt-suche {
    display: none;
    margin-bottom: 10px;
}

.projekt-suche input {
    color: #333;
    background-color: #eee!important;
    width: 100%;
    padding: 8px 8px 8px 32px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: url('../svg/lupe.svg') no-repeat 8px center;
    background-size: 16px;
    outline: none;
}

.admin .projekt-buttons {
    display:block !important;
}

.projekt-buttons {
    /*display: flex;*/
    display: none;
    gap: 10px;
    margin-bottom: 10px;
}

.filter-button {
    padding: 5px 13px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #e0e0e0;
}

.filter-button.active, .filter-button:hover {
    font-weight: 600;
    background: #c2e4ef;
    color: var(--titel-blau);
}

.projekt-faelle {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fall {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 5px;
}

.fall-thumbnail {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right:20px;
}

.fall-name {
    max-width: calc(100% - 100px);
    position: relative;
    margin-right: 15px;
}

.neuer-fall-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #2a9d8f;
    color: white;
    cursor: pointer;
    text-align: center;
}

.faelle-container {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    padding-left:60px;
}

.faelle-container.active {
    opacity: 1;
    max-height: 1000px; /* groß genug für den größten möglichen Inhalt */
}

.add-case, .case {
    align-items: center;
    gap: 10px;
    display: flex;
    cursor:pointer;
    border-radius:30px;
}

.add-case.aktiv, .add-case:hover, .case.aktiv, .case:hover {
    background-color: var(--bg-button);
    color:#000;
}

.add-case .plus {
    font-family:Arial;
    font-weight: 100;
    font-size: 40px;
    display: flex;
    height: 30px;
    width: 30px;
    padding: 5px;
    background-color: #bbb;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.add-case.aktiv .plus, .add-case:hover .plus {
    background-color: var(--gruen);
    color:#fff;
}

.add-text {
    font-weight:600;
    color:#bbb;
}

.add-case.aktiv .add-text, .add-case:hover .add-text {
    color:#000;
}

.case {
    display: flex;
    justify-content: space-between;
    /*padding: 5px 0;*/
}

.flex {
    max-width: 100%;
    display: flex;
    align-items: center;
}

.case .flex {
    width:100%;
}

hr.case-teiler {
    height: 1px;
    margin: 0 0 8px 0;
    padding: 0;
    border: 0;
    border-top: 0.5px solid #ddd; /* Dünnere Linie */
    width: 100%;
}

.case-actions {
    display:flex;
    gap:3px;
}

.case-actions button {
    /*display:none;*/
    background-color: transparent;
    border: 0;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    cursor:pointer;
}

.case-actions button:hover {
    background-color:var(--hell-gruen);
    border:1px solid var(--gruen);
}

/* Setze das rote Quadrat als Standard */
.activate-case .activate-icon {
    display: block;
    height: 15px;
    width: 15px;
    background-color: red;
    transition: all 0.3s ease;
  }
  
  /* Wenn man mit der Maus darüber fährt, wechselt das Quadrat zum grünen Kreis */
  .activate-case:hover .activate-icon {
    background-color: green;  /* Grüner Hintergrund */
    color: white;  /* Weißer Text */
    border-radius: 50%;  /* Mache es rund (Kreis) */
  }

  .chat-eintrag {
    width: 100%;
    min-height: 50px;
    padding: 10px;
    border-top: 1px solid #ddd;
    margin-bottom: -1px;
    background: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.chat-eintrag:hover {
    background-color:var(--hell-gruen);
}

.chat-eintrag.inaktiv {
    color:#aaa;
}

.chat-eintrag.inaktiv:hover {
    background-color:#eee;
}

.chat-eintrag.inaktiv img {
    filter: grayscale(100%) brightness(1.2);
}

.header {
    box-shadow: 1px 7px 9px rgba(0, 0, 0, 0.3);
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
    display: flex;
    align-items: center;
    padding: 15px 15px 15px 11px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    height: 50px;
    justify-content: space-between;
    z-index: 99;
}

.header-img {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin-right: 7px;
}

.fhklogo {
    max-width: 350px;
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 60%;
    min-width:150px!important;
}

.fhklogo img {
    width: 100%;
    max-height: 45px;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.header div {
    display: flex;
    width: 33%;
    min-width: fit-content;
    align-items: center;
}

.header div.center {
    justify-content: center;
}

.header div.right {
    justify-content:flex-end;
}

.header-headl {
    font-weight:bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width:auto!important;
    min-width: unset!important;
    display: block!important;
    text-align: left;
}

.back-button {
    font-size: 24px;
    text-decoration: none;
    color: #333;
    margin-right: 7px;
}

.back-button svg {
    height: 20px;
    width: 20px;
}

.hamburger {
    font-weight: lighter;
    font-size: 30px;
    cursor: pointer;
    width:fit-content!important;
    padding-left: 10px;
}


/*MENÜ*/
.haupt-menue {
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(-50%);
    /* margin: 0 auto; */
    position: fixed;
    z-index: 99999;
    height: auto;
    max-height: calc(100% - 120px);
    flex-direction: column;
    align-items: flex-start;
    display: none;
    width: 100%;
    max-width: 500px;
    left: 50%;
    top: 120px;
    /* overflow: hidden; */
    opacity: 0.9;
    transition: transform 1s;
    box-shadow: 1px 7px 9px rgba(0, 0, 0, 0.3);
}

.haupt-menue .men-container {
    height: auto;
    width: 100%;
}

.no-logo .haupt-menue {
    top: 50px;
}

.chat .haupt-menue {
    top: 130px;
}

.kreis {
    margin-right: 3%;
    display: flex;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--rot);
    justify-content: center;
    align-items: center;
}

.kreis-grau {
    margin-right: 3%;
    display: flex;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #666;
    justify-content: center;
    align-items: center;
}

.kreis-grau-border {
    margin-right: 3%;
    display: flex;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #666;
    justify-content: center;
    align-items: center;
}

.kreis1 {
    margin-right: 3%;
    display: flex;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #333;
    justify-content: center;
    align-items: center;
}

.no-kreis {
    margin-right: 3%;
    display: flex;
    width: 40px;
    height: 40px;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.men-punkt, a.men-punkt {
    align-items: center;
    border: solid 1px #ddd;
    border-width: 0px 0px 1px 0px;
    background-color: #fff;
    font-size: 100%;
    display: flex;
    width: 100%;
    height: 60px;
    padding: 0vw 20px;
    cursor: pointer;
    color: #000;
}

.men-punkt svg {
    max-height: 40px;
    width: 40px;
    margin-right: 3%;
}

.men-punkt1 {
    align-items: center;
    border: solid #ddd;
    border-width: 0px 0px 1px 0px;
    background-color: #fff;
    font-size: 100%;
    display: flex;
    width: 100%;
    height: 60px;
    padding: 0vw calc(20px + 3dvh + 3%);
    cursor: pointer;
}

.men-punkt:hover, .men-punkt1:hover {
    background-color: var(--hell-gruen);
    /*border:1px solid var(--gruen);*/
  }
  
  .men-trenner {
    width: 100%;
    height: 5px;
    background-color: var(--titel-blau);
  }

  .link, a {
    color: var(--rot);
    text-decoration: none;
    cursor: pointer;
}

.men-text a {
    color: currentColor;
}

.fall-status-icon {
    display:none;
    top: -3px;
    right: 2px;
    position: absolute;
    width: 18px;
}

.fall-status-icon svg {
    width:100%;
}

.title-vorschau {
    margin-top: 5px;
    font-size: 12px;
    color: #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.fall-pic-container {
    display: flex;
    max-width: 50px;
    position: relative;
    align-items: center;
}


#overlay-teilen {
    display: none;
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0, 0.7);
    padding: 20px;
    /* Hintergrund verschwimmen lassen */
    backdrop-filter: blur(10px); /* Stärke des Verschwimmens */
    -webkit-backdrop-filter: blur(10px); /* Unterstützung für Safari */
  }
  
  #overlay-teilen .overlay-inhalt {
    width: 100%;
    text-align: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%);
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  .men-teilen img {
    width:20px;
    margin-right:10px;
  }
  
  .teilen1 {
    background-color: #222;
    width: calc(20vw - 10px);
    max-width: 50px;
    padding: 10px;
    border-radius: 5px;
    height: auto;
    box-sizing: border-box;
    margin-right:10px;
  }
  
  
  .teilen1:hover {
    background-color: var(--rot);
  }
  
  .teilen1 a {
    align-items: center;
    display: flex;
  }
  
  .teilen1 img, .teilen1 svg {
  width:20px;
  }

  .logobreit, .logobreit1 {
    display:flex;
    justify-content: center;
}

.logobreit svg {
width:calc(100vw - 40px);
max-width:460px
}

.logobreit img {
width:100%;
max-width:500px;
}

.logobreit1 img {
width:calc(100% - 40px);
max-width:460px;
}

.center {
    text-align:center;
    margin:0 auto;
}

.padd5 {
    padding:20px;
}

input, select {
    padding: 7px;
    background-color: #fff;
    color: #000;
    border: 1px solid var(--gruen);
    border-radius: 8px;
    width: 100%;
    font-size: 100%;
}

:disabled {
    color: #333;
    border: #333 1px solid;
    background-color: #c8c8c8;
}

.flex3 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.gap {
    gap:10px;
}

.conthellrund1 {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    border:1px solid var(--gruen);
}

.contgraurund {
    padding: 20px;
    background-color: #ddd;
    border-radius: 5px;
    border:1px solid var(--gruen);
}

.hnr {
    margin-left: 10px;
    width: calc(25% - 10px);
}

.profilsubmit {
    width:fit-content;
    padding:10px 20px;
    background-color:var(--rot);
    color:#fff;
    border-radius:20px;
    border:0;
}

.profilsubmit:hover {
    background-color:var(--gruen);
}

.erfolg {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Startzustand (unsichtbar) */
    z-index: 9990;
}

.error {
    position: fixed;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f8d7da;
    color: #721c24;
    padding: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 9999;
    width:calc(100% - 40px);
    max-width:500px;
  }

  .support-button {
    color: #fff;
    background-color: var(--gruen);
    padding: 5px 15px;
    border-radius: 8px;
    border: 1px solid;
    font-size: 14px;
    left: 20px;
    top: 20px;
    position: absolute;
  }

  .support-button:hover {
    background-color: #fff;
    color:#000;
  }

  .delete-case {
        display: none;
    }

  .admin .delete-case {
        display: block!important;
    }

    .tabs {
        margin-top: 15px;
        display: flex;
        gap: 0px;
    }

    .tab-button {
        padding: 10px 30px;
        cursor: pointer;
        border-radius: 10px 10px 0 0;
        border: 0px;
        font-weight:500;
    }

    .tab-button.active {
        font-weight: bold;
        border-width: 1px 1px 0px 1px;
    }

    #tab-meine, #tab-content-meine {
        background-color: #f0f0f0;
    }

    #tab-inaktive, #tab-content-inaktive {
        background-color: #969696;
        color:#fff;
    }

    .tab-content.active {
        gap: 10px;
        display: flex;
        opacity: 1;
        flex-direction: column;
    }
    .tab-content {
        height: 100%;
        border-radius: 0 0 5px 5px;
        padding: 10px;
        border: 0;
        margin-top: -1px;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        min-height: fit-content;
        width: 100%;
    }

  .header-logo {
    width: 100%;
    height:70px;
    max-height:70px;
    margin: 0 auto;
    max-width: 500px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    /*
    box-shadow: 1px 7px 9px rgba(0, 0, 0, 0.3);
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    height: 50px;
    */
    justify-content: space-between;
  }

  .header-logo img {
    width: auto;
    min-width: 150px;
    max-width: 250px;
    height: 100%;
    max-height: 50px;
  }

  .header-logo .login {
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .login .fhk img {
    margin-left: 10px;
    min-width: auto;
    min-height: 40px;
    max-width: 80px;
    max-height: 40px;
    width: auto!important;
    height: 40px!important;
  }

  .case-container {
        position: relative;
    }

    /* Stil für den "Neu"-Indikator */
    .new-case-indicator {
        width: 18px;
        height: 18px;
        z-index: 5; /* Stellt sicher, dass es über dem Inhalt liegt */
    }

    .new-case-indicator svg {
        width: 100%;
        height: 100%;
        fill: #ffc107; /* Ein warmer Gold-/Gelbton */
        stroke: #e6a700; /* Ein leichter Rand für bessere Sichtbarkeit */
        stroke-width: 1px;
        /* Animation für einen leichten "Puls"-Effekt */
        animation: pulse 2s infinite;
    }

    /* Keyframe-Animation für den Puls-Effekt */
    @keyframes pulse {
        0% {
            transform: scale(0.95);
            opacity: 0.8;
        }
        70% {
            transform: scale(1.1);
            opacity: 1;
        }
        100% {
            transform: scale(0.95);
            opacity: 0.8;
        }
    }

    #start-now-btn {
        padding: 12px 25px; 
        font-size: 16px; 
        cursor: pointer;
        background-color: #fff;
    }

    .profil-container {
        padding: 20px;
        background-color: #fff;
    }

    .chat-eintrag.finished .projekt-logo {
        opacity: 0.6;
        filter: grayscale(100%);
    }

    .chat-eintrag.finished {
        background-color: #cecece;
    }
    
    .chat-eintrag.finished:hover {
        background-color: #f0f0f0;
        opacity: 0.8;
    }

    .finished-icon-container {
        margin-left: auto; /* Schiebt das Icon nach ganz rechts */
        width: 30px;
        height: 30px;
        min-width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .finished-icon-container svg {
        width: 100%;
        height: 100%;
    }

    /* --- MODAL STYLES --- */

/* Hintergrund-Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dunkelt den Hintergrund ab */
    z-index: 100000; /* Muss über dem Menü liegen (Menü hat 99999) */
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px); /* Schöner Weichzeichner-Effekt für den Hintergrund */
}

/* Die Box selbst */
.modal-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease-out;
}

/* Titel */
.modal-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

/* Text */
.modal-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
}

/* Checkbox Bereich */
.modal-checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 14px;
    color: #333;
}

.modal-checkbox-wrapper input[type="checkbox"] {
    width: auto; /* Überschreibt das width: 100% aus dem generellen Input-Style */
    margin: 0;
    cursor: pointer;
}

.modal-checkbox-wrapper label {
    cursor: pointer;
}

/* Button Bereich */
.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

/* Buttons */
.modal-actions button {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    flex: 1; /* Beide Buttons gleich breit */
}

/* Abbrechen Button */
.button-secondary {
    background-color: #e0e0e0;
    color: #333;
}

.button-secondary:hover {
    background-color: #d0d0d0;
}

/* Bestätigen Button */
.button-primary {
    background-color: var(--gruen, #2a9d8f); /* Fallback auf Teal, falls Var fehlt */
    color: #fff;
}

.button-primary:hover {
    filter: brightness(0.9);
}

/* Kleine Animation beim Einblenden */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.chat-eintrag .flex {
    display: flex;
    align-items: center;
    width: 100%;
}

.tab-status-dot {
    flex: 1;
    margin-right: 10px;
    text-align: right;
}

.chat-legend {
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
    font-size: 12px;
    color: #666;
    margin-top: 20px;
    padding: 0 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive Anpassung für sehr kleine Screens */
@media (max-width: 400px) {
    .modal-actions {
        flex-direction: column;
    }
    .modal-content {
        padding: 20px;
    }
}

  @media (max-width: 400px) {

    .projekt-header {
        flex-direction: column;
    }

    .faelle-container {
        padding-left:0;
    }

  }

  @media (max-width: 550px) {

    /*.header-logo .login {
        padding: 10px;
    }*/

    .chat .haupt-menue {
        top:100px;
        width: calc(100% - 10px);
    }

    .projekte-container {
        height: calc(100dvh - 50px);
        border-radius:0px;
    }

    .tab-content {
        border-radius:0px;
    }

    .header-logo {
        padding: 10px 10px;
    }

  }