/* HTML, BODY */
html, body{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: Karla-Regular;
    font-size: 15pt;
}

/* FARBEN */
:root {
    --blue: #3C6D90;
    --transblue: rgba(60, 109, 144, 0.5);
    --orange: #F07D00;
    --transorange: rgba(240, 125, 0, 0.5);
    --white: #fff;
    --darkgrey: #313131;
    --transgrey: rgba(49, 49, 49, 0.5);
    --lightgrey: #d9d9d9;
}

/* FONTS */

@font-face {
    font-family: 'Karla-Regular'; 
    src: url('../fonts/Karla-Regular.ttf');
   }

@font-face {
    font-family: 'Karla-Bold'; 
    src: url('../fonts/Karla-Bold.ttf');
   }

h1{
    font-family: Karla-Bold;
    font-size: 25pt;
    margin-top: 0;
    font-weight: 100;
}

h2{
    font-family: Karla-Bold;
    font-size: 1.5vw;
    margin-top: 0;
    font-weight: 100;
    margin-bottom: 5px;
}

.fontLight{
    color: var(--lightgrey);
}


/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
    opacity: 0.4;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--lightgrey);
    opacity: 0.4;
    border-radius: 10px;
    margin-left: 5px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--darkgrey);
    border-radius: 10px;
    width: 10px;
  }

/* GRUNDSTRUKTUR */
.container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#error{
    width: 300px;
    height: 100px;
    background-color: var(--orange);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.error{
    border-color: red !important;
    color: red !important;
}

/* GRUNDSTRUKTUR SEITENNAVIGATION */
.sideNavigation{
    width: 20%;
    min-width: 280px;
    height: 100%;
    display: inline-flex;
    background-color: var(--white);
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.61);
    z-index: 2000;
    padding: 40px;
    box-sizing: border-box;
    flex-direction: column;
    overflow: auto;
}

.logo{
    width: 150px;
    height: auto;
    cursor: pointer;
}

.navigationWrapper{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
    flex-direction: column;
    gap: 30px;
}

.menuWrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    flex-wrap: wrap;
}

.menuWrapper span{
    width: fit-content;
}

.menuWrapper .menuTitel{
    width: fit-content;
    gap: 0;
}

.menuTitel{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.gap{
    gap: 10px !important;
}

.wrap{
    flex-wrap: wrap;
    overflow: auto;
    max-height: 80%;
    padding: 30px;
    box-sizing: border-box;
    justify-content: center;
}

.iconExpand{
    width: 40px;
    height: 40px;
}

.icon{
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img{
    width: 25px;
    height: 25px;
}

.menuLevel2Wrapper{
    width: 85%;
    height: auto;
    display: none;
    padding-left: 15%;
    box-sizing: border-box;
}

.menuLevel2{
    width: 100%;
    height: 30px;
    border-radius: 10px;
    padding: 5px;
    font-size: 12pt;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.menuBlue:hover{
    background-color: var(--transblue);
}
.menuOrange:hover{
    background-color: var(--transorange);
}
.menuGrey:hover{
    background-color: var(--transgrey);
}

.flexColumn{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 500px;
}

.fontSmall{
    font-size: 10pt;
}

/* GRUNDSTRUKTUR INHALT */
.contentContainer{
    width: 80%;
    height: 100%;
    background-color: var(--white);
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    overflow: auto;
    padding-bottom: 50px;
}

.splitWrapper{
    width: 100%;
    /* height: 70%; */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    box-sizing: border-box;
    gap: 10px;
    flex-wrap: wrap;
    min-height: max-content;
    padding-bottom: 30px;
    border-radius: 15px;
}

.second{
    padding-top: 0;
}

.scroll{
    overflow: auto;
    margin-bottom: 20px;
}

.wrapperLeft, .wrapperRight{
    width: 40%;
    height: auto;
    max-height: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 20px;
    border-radius: 15px;
    overflow: auto;
    box-sizing: border-box;
}

.wrapperLog{
    max-height: 250px;
}

.displayColum{
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.wrapperCenter{
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.wrapperLeft.shadow, .wrapperRight.shadow, .wrapperFullLength.shadow, .splitWrapper.shadow{
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

.wrapperFullLength{
    width: 90%;
    height: auto;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    box-sizing: border-box;
    gap: 10px;
    border-radius: 15px;
    overflow: auto;
}

.wrapperFullLength .splitWrapper{
    padding-top: 0;
    justify-content: space-between;
}

.wrapperFullLength .menuWrapper{
    padding: 20px;
    box-sizing: border-box;
    padding-bottom: 0;
}

.wrapperFullLength .wrapperRight, .wrapperFullLength .wrapperLeft{
    padding-top: 0;
    width: 47%;
} 

.bottom{
    padding-top: 30px;
    justify-content: space-evenly;
    gap: 0;
    height: 40%;
}

.shadow .button{
    width: 100%;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}

#overlayContainer{
    width: 60%;
    height: 75%;
    background-color: var(--white);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%,-50%);
    border-radius: 15px;
    padding-top: 20px;
    display: none;
}

.emailContainer{
    width: 50% !important;
    height: 50% !important;
    transform: translate(-50%,-50%) !important;
    gap: 50px;
}

#closeOverlay{
    align-self: flex-end;
    margin-right: 10px;
    cursor: pointer;
    width: 50px;
}

/* GRUNDSTRUKTUR HEADER*/
.header{
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 400px;
    background-color: var(--white);
    padding-top: 30px;
    box-sizing: border-box;
}

#headerTitel{
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.headerIcon{
    width: 70px;
    height: 70px;
}

#buttonProfile{
    width: 70px;
    aspect-ratio: 1/1;
    border-radius: 50px;
    background-color: var(--blue);
    background-image: url(../media/iconAccount.svg);
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    right: 20px;
    top: 20px;
    cursor: pointer;
    margin-top: 20px;
    margin-right: 20px;
    position: absolute;
}

.buttonLogin{
    background-image: url(../media/iconLogin.svg) !important;
}

#burgerMenu{
    display: none;
    width: 60px;
    height: 60px;
    background-image: url(../media/iconBurgerMenu.svg);
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    left: 20px;
    top: 20px;
    cursor: pointer;
    margin-top: 20px;
    margin-left: 20px;
    z-index: 5000;
}


/* GRUNDSTRUKTUR FOOTER*/
.footer{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-sizing: border-box;
}

.footer .button{
    width: 35%;
}



/* BUTTONS */
.button{
    height: 50px;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.blue{
    background-color: var(--blue);
    color: var(--white);
}

.orange{
    background-color: var(--orange);
    color: #000;
}

.darkgrey{
    background-color: var(--darkgrey);
    color: #fff;
}

.lightGrey{
    background-color: var(--lightgrey);
    color: #000;
}

.outlineBlue{
    background-color: none;
    border: 2px solid var(--blue);
    box-sizing: border-box;
}

.transparent{
    background-color: none;
}

.status{
    width: 25px;
    height: 25px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.status img{
    width: 20px;
    height: 20px;
}

.notActive{
    background-color: #E15F5F;
}

.active{
    background-color: #62CC60;
}

.optionWrapper{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* FORMULAR */
.formInput{
    width: 100%;
    height: 30px;
    border-radius: 15px;
    border: 3px solid var(--blue);
    padding: 10px;
    padding-left: 30px;
    font-size: 15pt;
    display: block;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    font-family: Karla-Regular;
    font-size: 1.2vw;
}

.formInput:focus{
    outline: none;
    border-color: var(--orange);
}

.dropdown{
    width: 100%;
}

.formDropdown{
    box-sizing: border-box;
    height: 56px;
}

.dropdownContent{
    width: 100%;
    height: auto;
    background-color: #ededed;
    margin-top: 5px;
    border-radius: 20px;
    padding: 10px;
    box-sizing: border-box;
    max-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    overflow: auto;
    display: none;
}

.dropdownContent a{
    width: 100%;
    height: 40px;
    text-align: left;
    color: #000;
    text-decoration: none;
    font-family: Karla-Regular;
    padding-left: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.dropdownSearch{
    width: 100%;
    background-color: var(--white);
    border: 2px solid var(--darkgrey);
    border-radius: 15px;
    height: 40px;
    padding: 10px;
    padding-left: 30px;
    box-sizing: border-box;
    font-size: 15pt;
}

.dropdownSearch:focus{
    outline: none;
    border-color: var(--orange);
}

.dropdownScroll{
    width: 100%;
    overflow: auto;
}

.dropdownScroll a{
    border-radius: 15px;
}

.dropdownScroll a:nth-child(2){
    background-color: lightgray;
}

.dropdownScroll a:hover{
    border-radius: 15px;
    background-color: gray;
}

.show{
    display: flex !important;
}

.highlightOrange{
    border-color: var(--orange);
}

.formSubmit{
    border: none;
    outline: none;
    font-size: 15pt;
    align-self: flex-end;
    font-family: Karla-Regular;
}

.formSelect{
    width: 100%;
    height: 55px;
    border-radius: 15px;
    border: 3px solid var(--blue);
    padding: 10px;
    padding-left: 30px;
    font-size: 15pt;
    display: block;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    font-family: Karla-Regular;
}


.formSelect:focus{
    outline: none;
    border-color: var(--orange);
}

label {
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none; 
    transition: 0.2s; 
}
  
input:focus + label, input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px; 
    color: #888; 
}

.POC {
    width: 85%;
    &:before {
      content: attr(data-placeholder);
      position: inherit;
      color: #aaa;
      font-size: medium;
      padding-left: 30px;
    }
}


.search{
    width: 400px;
/*     width: 200px; */
    height: 40px;
    background-color: var(--white);
    color: #000;
    border: 2px solid var(--blue);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 15px;
    display: flex;
}

.search input{
    width: 60%;
    border: none;
    outline: none;
    font-family: Karla-Regular;
    font-size: 15pt;
}
.search input[type="submit"]{
    width: 24%;
    background-color: var(--blue);
    color: #fff;
    border-radius: 15px;
    cursor: pointer;
}

.search input:focus{
    border: none;
    outline: none;
}

th img{
    width: 30%;
    height: 30%;
    margin: 0% -13%;
}

.inputWrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.small{
    width: 30% !important;
}

.medium{
    width: 70%;
}

.inputIcon{
    margin-right: 25px;
    background: url("../media/icon_dropdown.svg") no-repeat right;
    background-size: 30px;
}

.up{
    margin-right: 25px;
    background: url("../media/icon_dropup.svg") no-repeat right;
    background-size: 30px;
}



/* ERROR-SEITE */
#error_title{
    font-size: 90pt;
    font-weight: bold;
    color: var(--orange);
    padding-top: 4%;
    margin: 0% 0% 1% 16%;
}
#error_subtitle{
    font-size: 40pt;
    font-weight: bold;
    color: var(--orange);
    margin: 0% 0% 0% 16%;
}

#error_text{
    font-size: 14pt;
    font-weight: bold;
    color: var(--orange);
    margin: 0% 0% 0% 16%;
    padding-top: 1%;
}

#error_picture{
    margin: -6% 0% 0% 50%;
    width: 46%;
}

/* STARTSEITE*/
#startpage-content{
    margin: 0% 20%;
    width: 100%;
    height: 100%;
    inline-size: auto;
}

#startpage{
    display: grid;
}

#faq ul{
    padding: 0%;
}

#startpage-content p{
    line-height: 1.5;
    text-align: center;
}
#faq p{
    line-height: 1.5;
    text-align: left;
    padding-left: 60px;
}
#faq_title {
    font-family: Karla-Bold;
    font-size: 25pt;
    margin-top: 60px;
    font-weight: 100;
    text-align: center;
    padding-bottom: 22px;
}
#faq summary {
    padding: 15px;
    background: #eee;
    border: 1px solid #fff;
}

#faq ul li {
	list-style-type: none;
	margin-left: 0;
	padding-left: 0;
}
#faq ul li li {
	list-style-type: square;
    margin-left: 120px;
}

#faq details details {
	background-color: #eee;
	margin-left: 1em;
}

#startpage #footer{
    margin-top: 60px;
    padding-bottom: 20px;
    text-align: center;
}
#footer span{
    cursor: pointer;
    margin: 0px 50px;
}



/* TABELLEN */
.tableHeader{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
/*  justify-content: space-around; */
/*     padding: 10px ; */
    padding: 10px 30px 10px 30px;
    box-sizing: border-box;
}

.tableHeader .button, .menuWrapper .button{
    width: fit-content;
    height: 40px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    padding: 10px;
}

.tableHeader img, .button img{
    width: 35px;
    height: 35px;
}

.filterWrapper{
    width: auto;
    height: 40px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    flex-wrap: wrap;
}

.tableContainer{
    width: 100%;
    height: 100%;
    overflow: auto;
}

.table{
    font-family: Karla-Regular;
    border-collapse: collapse;
    width: 100%;
    color: #000;
    border: none;
}
 

.table td, table th{
/*     padding: 8px; */
    padding: 8px 0px 8px 30px;
    text-align: left;
    height: 45px;
}

.table td{
    border-bottom: 1px solid var(--lightgrey);
/*     cursor: pointer;
 */}

.table th{
    background-color: var(--lightgrey);
    font-weight: 100;
}

.table .button{
    width: 150px;
    height: 30px;
}

thead{
    cursor: pointer;
}

.hoverContentContainer{
    width: fit-content;
    height: fit-content;
    position: absolute;
    background-color: var(--darkgrey);
    color: #fff;
    border-radius: 15px;
    justify-content: flex-start;
    align-items: center;
    font-size: 12pt;
    padding: 10px;
    box-sizing: border-box;
    transform: translate(10px, -10px);
    display: none;
    z-index: 6000;
}




/* QR-CODE */   

.qrContainer{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    box-sizing: border-box;
    min-width: 250px;
}

.qrWrapper{
    width: 100%;
    border: 2px solid var(--blue);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    flex-direction: column;
    padding: 30px;
    box-sizing: border-box;
}

.download{
    width: 30px;
    height: auto;
    cursor: pointer;
}

#overlayContainerDark{
    width: 20%;
    min-width: 300px;
    height: auto;
    background-color: var(--darkgrey);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-15%,-50%);
    border-radius: 15px;
    padding-top: 20px;
    display: none;
}

#overlayContainerDark .qrContainer{
    width: 70%;
}

#overlayContainerDark .qrWrapper{
    background-color: var(--white);
    border: none;
}

#overlayContainerDark .button{
    width: 100%;
}

.qrContainerSmall{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    height: auto;
}

.qrContainerSmall .qrWrapper{
    width: 30%;
}

.buttonWrapper{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.bottom .wrapperRight{
    max-height: 250px;
}


/* RESPONSIVE */
/* Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1550px) {
    .table, thead, tbody, th, td, tr{ 
		display: block; 
        font-size: 1.5vw;
	}

    thead tr{ 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

    tr{
        border: 1px solid #ccc;
    }

    tr:nth-of-type(even), tr:nth-of-type(even) td{ 
        background: #eee; 
        border: 1px solid #fff;
      }

    td{
		border: none;
		border-bottom: 1px solid #eee !important; 
		position: relative;
		padding-left: 50% !important; 
        display: flex;
        align-items: center;
	}

    td:nth-of-type(odd){
        border-bottom: 1px solid #fff;
    }

    td:before{
        width: 90%;
        padding-right: 10px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-left: -90%;
	}

    /* Neue Spaltennamen der Tabellen in Mobile-Ansicht */
    /* Company Tabelle */
    .tdTableCompany:nth-of-type(1):before { content: "Name"; }
	.tdTableCompany:nth-of-type(2):before { content: "Contact"; }
	.tdTableCompany:nth-of-type(3):before { content: "City"; }
	.tdTableCompany:nth-of-type(4):before { content: "QR-Codes"; }
	.tdTableCompany:nth-of-type(5):before { content: "Status"; }
    /* QR-Code Tabelle */
    .tdTableQRCode:nth-of-type(1):before { content: "Title"; }
	.tdTableQRCode:nth-of-type(2):before { content: "Target Adress"; }
	.tdTableQRCode:nth-of-type(3):before { content: "Company"; }
	.tdTableQRCode:nth-of-type(4):before { content: "Valid until"; }
	.tdTableQRCode:nth-of-type(5):before { content: "Updated"; }
	.tdTableQRCode:nth-of-type(6):before { content: "Created"; }
	.tdTableQRCode:nth-of-type(7):before { content: "Status"; }
    /* User Tabelle */
    .tdTableUser:nth-of-type(1):before { content: "Name"; }
	.tdTableUser:nth-of-type(2):before { content: "Email"; }
	.tdTableUser:nth-of-type(3):before { content: "Company"; }
	.tdTableUser:nth-of-type(4):before { content: "Role"; }
	.tdTableUser:nth-of-type(5):before { content: "QR-Codes"; }
	.tdTableUser:nth-of-type(6):before { content: "Status"; }
    /* User Overlay Tabelle */
    .tdTableUserOverlay:nth-of-type(1):before { content: "Name"; }
	.tdTableUserOverlay:nth-of-type(2):before { content: "Email"; }
	.tdTableUserOverlay:nth-of-type(3):before { content: "QR-Codes"; }
	.tdTableUserOverlay:nth-of-type(4):before { content: "Status"; }
    /* Log Tabelle */
    .tdTableLog:nth-of-type(1):before { content: "User"; }
	.tdTableLog:nth-of-type(2):before { content: "Event"; }
	.tdTableLog:nth-of-type(3):before { content: "Date"; }

    .search{
        width: 200px;
    }

    .tableHeader .button{
        font-size: 2vw;
    }

    .hoverContentContainer{
        transform: translate(-20px, 20px);
    }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
    .splitWrapper{
        height: fit-content;
        overflow: auto;
        margin-bottom: 20px;
        padding-top: 30px;
    }
    
    .wrapperLeft, .wrapperRight{
        min-width: 400px;
    }

    .qrContainer{
        width: 80%;
    }

    .formInput{
        font-size: 1.5vw;
    }
    #buttonProfile{
        position: relative;
    }

    .wrapperLeft, .wrapperRight{
        max-height: none;
    }

    .small, .medium{
        width: 100% !important;
    }

    .inputWrapper{
        flex-direction: column;
        align-items: flex-start;
    }

    .qrContainerSmall{
        flex-direction: column;
    }

    .qrWrapper, .buttonWrapper{
        width: 90% !important;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    .wrapperLeft, .wrapperRight{
        min-width: 300px;
    }

    .button{
        font-size: 2.5vw;
    }

    .formInput{
        font-size: 3vw;
    }

    .loginContainer{
        width: 80%;
    }
    
    .sideNavigation{
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        padding-top: 40px;
    }
    
    #burgerMenu{
        display: block;
    }
    
    .logo{
        width: 100px;
    }

    .table, thead, tbody, th, td, tr{ 
        font-size: 3vw;
	}

    .wrapperLeft, .wrapperRight{
        width: 80%;
    }

    h2{
        font-size: 3vw;
    }

    #overlayContainer{
        width: 90%;
        height: 90%;
        top: 5%;
        left: 5%;
        transform: translate(0, 0);
        z-index: 10000;
    }

    #overlayContainerDark{
        display: flex;
        width: 70%;
        height: auto;
        transform: translate(-50%, -50%);
        min-width: none;
    }
}

 /* Small devices (landscape phones, 576px and up) */
 @media (max-width: 576px) { 
    .tableHeader{
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .tableHeader .button, .tableHeader .search{
        width: 100%;
        font-size: 4vw;
    }

    .hoverContentContainer{
        transform: translate(-20px, 60px);
    }
 }

  /* Small devices (landscape phones, 576px and up) */
  @media (max-height: 850px) { 
    .navigationWrapper{
        max-height: 300px;
        overflow: auto;
    }
 }