/* /CSS/Main.css */
@keyframes slideDown {
	0% {
	  transform: scaleY(0); /* Start collapsed */
	  opacity: 0; /* Start invisible */
	}
	100% {
	  transform: scaleY(1); /* Fully expanded */
	  opacity: 1; /* Fully visible */
	}
  }

 
 /* main color definitions ****************************************************/
 :root {
	--SectionBorderColor:       #e5e7eb;
	--PageDesktopBackground:    #ffffff;
	--PageDesktopColor:         #000000;
	--InputBackground:          #f3f4f6;
	--DesignTeamBorder:         #ffffff;
 }
 
 *, :after, :before {
	box-sizing:     border-box;
	border:         0 solid var(--SectionBorderColor);
	margin:         0;
 }
 
 
html {
	transform-origin: top left;
}

body {
	font-family: Arial, Helvetica, sans-serif;
}
 
a {
	color:              var(--PageDesktopColor);
	text-decoration:    none;
}

p {
	word-wrap: break-word;
}

main {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
	background-image: url('/pictures/LoginBackground.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	grid-template-rows: auto 1fr;
	grid-template-areas: 
	"header header"
	"sidebar content";
	font-family:	Arial, Verdana, sans-serif;
	min-height: 	100vh;
	overflow: hidden;
}

	.layout.Dimmed::before {
		content: '';
		position: fixed;
		top: 0; 
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.5);
		z-index: 1000;
	}

.Contents {
	display: contents;
}

	.Contents.Dimmed::before {
		content: '';
		position: fixed;
		top: 0; 
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.5);
		z-index: 1000;
	}

 /* SectionHeader *************************************************************/

.SectionHeader {
	top: 0;
	position: sticky;
	display: 							grid;
	grid-template-columns: 				240px 1fr 140px;
	grid-template-areas: 
	"dataarea breadcrumbs userprofile";
	grid-area: 							header;
	align-items:        				center;
	background-color:   				var(--PageDesktopBackground) !important;
	border-bottom-width:    			2px;
	padding: 							0.5rem
}


/* Dataarea *************/

	.HeaderDataArea {
		grid-area: 		dataarea;
		align-items:    center;
		display:        flex;
		flex-direction: row;
		gap: 			0.5rem;
	}

	.HeaderDataArea img {
		height:         40px;
		width:          40px;
	}

	.HeaderDataArea button {
		align-items:    	center;
		font-size: 			large;
  		line-height: 		1.75rem;
		text-align: 		left;
		background-color: white;
		white-space: 		nowrap;
  		overflow:			hidden;
 		text-overflow: 		ellipsis;
	}

	.HeaderDataArea button:hover {
		font-weight: bold;
	}


/* Breadcrumbs *************/

	.HeaderBreadcrumbs {
		grid-area: 		breadcrumbs;
	 }

	 .BreadcrumbsContainer {
		align-items: 	center;
		display:        flex;
		flex-direction: row;
	 }
	 
	.BreadcrumbItem {
		align-items:        center;
		display:            flex;
		flex-direction:     row;
		font-weight:        700;
		padding:		    0.5rem 0.5rem;
	}
	
	.BreadcrumbItem a {
		opacity: 50%;
	}

	.BreadcrumbItem:first-of-type {
		padding-left: 0;
	}
	
	.BreadcrumbItem:last-of-type a:last-child {
		color: #212121; /* Only the last <a> in the last .BreadcrumbItem is red */
		opacity: 100%;
	}
	
	.BreadcrumbItem img {
		height:         auto;
		margin-right:   0.5rem;
		width:          20px;
	}

/* Userprofile *************/

	.SectionHeaderProfile {
		display: flex;
		flex-direction: row;
		justify-content: end;
	}

	.SectionHeaderProfile img {
		margin-right: 1rem;
	}
 
	.ProfileContainer {
		display: flex;
	}

		.ProfileContainer Button {
			width: 2.75rem;
			height: 2.75rem;
			border-radius: 50%;
			background-color: #FFE492;
			cursor: pointer;
		}
 
 
 /* Section Menu **************************************************************/

.SectionMenu {
	top: 				62px;
	position: 			sticky;
	height: 			calc(100vh - 62px);
	align-self: 		start;
	grid-area: 			sidebar;
	border-right-width: 2px;
	padding: 			0.5rem
}

	.SectionMenu ul {
		list-style:     none;
		padding:        0;
	}

	.SectionMenu li {
		align-items:		center;
		border-left-color:	var(--PageDesktopBackground);
		cursor:				pointer;
		display:			flex;
		padding-top:		1rem;
		font-size:			medium;
	}

		.SectionMenu li:hover {
			border-left-color:          black;
			font-weight:                bold;
		}
	
		.SectionMenu li img {
			grid-area:                  Icon;
			height:                     20px;
			width:                      20px;
		}
	
	.SectionMenu .SubItem {
		padding-left: 2.5rem;
	}

	.SectionMenu span {
		display: flex;
		align-items: center;
		gap: 0.5rem;
	}


 /* SectionContent ************************************************************/

.SectionContent {
	grid-area: 				content;
	overflow: 				auto;
	max-height: 			calc(100vh - 62px);
	padding-left:			12px;
	padding-right:			12px;
}

	.SectionContentHeader {
		top: 				0px;
		position: 			sticky;
		z-index: 			99;
		padding-top: 		12px;
		background-color: white;
		align-items: 		center;
	}


 /***** ContentGroup **********************************************************/
 .ContentGroup {
	border:         1px solid var(--DesignTeamBorder);
	flex-direction: column;
	height:         100%;
 }
 
 
	.ContentGroup form {
		padding-bottom: 1rem;
	}
 
 
 /***** Actions ***************************************************************/
 .Actions {
	display:        flex;
	flex-direction: row;
	height: 		100%;
	gap: 			8px;
	padding-bottom: 0.5rem;
 }
 
 
	.Actions a {
		border:         1px solid var(--PageDesktopColor);
		border-radius:  3px;
		display:        inline-block;
		font-weight:    700;
		margin-right:   0.5rem;
		padding:        .25rem 1rem;
	}
 
 
	.Actions a:hover {
		background-color:   var(--PageDesktopColor);
		color:              var(--PageDesktopBackground);
	}
 
 
	.Actions select {
		display: flex;
		align-items: center;
		margin-right: 1rem;
		padding: 0.75rem 1.25rem;
		border-radius: 0.375rem;
		font-weight: 400;
		color: #000000; /* Text color */
		background-color: #ffffff; /* Button background color */
		border: 1px solid #e2e8f0; /* Light border around the button */
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		cursor: pointer;
		font-size: 1rem; /* Adjust font size */
		margin-bottom: 1rem;
	}


 /***** Image ***** 07.10.2024, JFl *****************************************/
 .img-style {
	max-width: 100%; /* Ensures the image doesn't exceed the width of its container */
	height: auto;
 }



input[type=checkbox] {
	accent-color: black;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 12px;
	min-width: 12px;
    height: 12px;
    border: 1px solid black;
    border-radius: 2px !important;
    background-color: white;
}


input[type="checkbox"]:checked {
    background-color: black;
    content: none;
}

/* /CSS/Table.css */
:root {
	--TableHeaderBackground: #F3F4F6;
}

table {
	font-size: small;
	text-align: left;
	border-collapse: separate;
	table-layout: auto;
	min-width: 100%;
	border-spacing: 0px 0px;
}

thead {
	position: sticky;
	top: 0;
	z-index: 2;
	text-transform: uppercase;
	background-color: #F9FAFB;
}

th {
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: 1rem;
	padding-right: 1rem;
	border-bottom-width: 1px;
	text-align: left;
	vertical-align: middle; /* Ensures the text aligns vertically */
}

th div {
	display: inline-flex; /* Use flexbox on the wrapper inside <th> */
	align-items: center; /* Align the text and icon vertically */
	justify-content: flex-start; /* Align items to the start (left) */
}

th div span {
	margin-right: 8px; /* Add gap between text and icon */
}

th svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s;
}

tbody tr {
	border-width: 1px;
	background-color: #ffffff;
}

tbody tr:hover {
	background-color: #F9FAFB;
}

td {
	padding: 1rem;
	border-bottom-width: 1px;
}

td .Mono {
	font-family:	monospace;
	font-size:		1.2em;
}

.TableContainer {
	grid-column: 	span 8;
	overflow: 		auto;
	border-radius: 	0.5rem;
	border-width: 	1px;
	min-height: 	0;
	margin-bottom: 	0.5rem;
}




/* /CSS/Databox.css */

 /***** Databox ***************************************************************/
 .Databox {
	display:                grid;
	grid-template-columns:  auto 1fr;
	margin:                 0 auto auto 0;
	max-width:              60rem;
	padding-right:          0.5rem;
	padding-bottom:         0.5rem;
 }
 
 
	.DataboxLabel {
		border-bottom:  1px solid #e0e0e0;
		display:        block;
		font-size:      100%;
		font-weight:    700;
		margin-bottom:  0.25rem;
		padding:        0.25rem;
		width:          100%;
	}
   
	.Data label {
		display:            flex;
		align-items:        center;
		justify-content:    flex-start;
		font-size: 			small;
		font-weight:        bold;
		grid-column:        1;
		color:				#424856;
	}
   
	.Data p {
		grid-column:    	2;
		margin:         	0;
		min-height: 		2.1rem;
		width: 				100%;
		padding: 			0.5rem;
		margin-bottom: 		1rem;
		background-color: rgba(243, 244, 246, 1);
		border-radius: 		0.5rem;
	}
   
	.Data input[type="text"] {
		border-radius:  3px;
		font-size:      small;
		font-family: 	inherit;
	}

	.Data input[type="date"] {
		color: rgb(66, 72, 86);
	}

	.Data select {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 1rem;
		padding: 0.75rem 1.25rem;
		border-radius: 0.375rem;
		font-weight: 600;
		color: #000000;
		border: 1px solid #e0e0e0;
		cursor: pointer;
		font-size: 1rem;
		background-color: #ffffff;

	}


	.Data select:hover,
	.Data select:focus {
		background: linear-gradient(to bottom, #000000 0%, #000000 100%);
		background-color: #ffffff;
		color: white;
	}

	.Data select option {
		color: #000000;
	}



	.Data textarea {
		background:     var(--InputBackground);
		border-radius:  0.5rem;
		font-size:      0.875rem;
		padding:        0.25rem;
		max-width: 100%;
		font-family: inherit;
		width: 100%;
	}

/* /CSS/Tabs.css */
.Tabs {
	display:        	flex;
	flex-direction: 	row;
	position: 			sticky;
	background-color: white;
	z-index: 			101;
	padding-top:		1rem;
	top: 				0px;
 }
	.Tabs nav {
		display: flex;
		padding: 0.25rem;
		flex-grow: 1;
	}
 
 
	.Tabs nav a {
		display: flex;
		font-size: small;
		flex-grow: 1;
		justify-content: space-between;
		border-bottom-width: 1px;
		border-color: #E5E7EB;
		border-color: transparent;
	}
 
 
	.Tabs nav a label {
		display: flex;
		flex-grow: 1;
		padding-bottom: 0.5rem;
		padding-left: 1rem;
		padding-right: 1rem;
		justify-content: center;
		align-items: center;
		transition-property: all;
		transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
		transition-duration: 300ms;
		transition-duration: 200ms;
		cursor: pointer;
		border-bottom-width: 1px;
	}
 
	.Tabs label:hover {
		border-bottom-width: 2px;
		border-color: #000000;
		text-shadow: 0 0 0.05px black;
		color: #000000;
	}

	.Tabs label.active { 
		border-bottom-width: 2px;
		border-color: #000000;
		text-shadow: 0 0 0.05px black;
		color: #000000;
	}

.TabContent > .ButtonContainer {
	padding-top: 0.5rem;
}
 
   
.Invisible {
	display:    none !important;
}

/* /CSS/Filter.css */
.FilterContainer {
    grid-column: 	5 / span 4;
    max-height: 	56px;
    display:		flex;
    flex-direction: row;
    justify-self: 	end;
    border-radius: 	0.375rem;
    border: 		1px solid #e2e8f0;
}

    .FilterContainer > div {
        border-right:   1px solid #e2e8f0;
        padding:        0.5rem;
    }

    .FilterContainer div:last-child {
        border-right: none;
    }

.InputTextFilter {
    font-size: small;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .InputTextFilter > label {
        font-weight: bold;
    }

.Filter {
    display:            flex;
    justify-content:    space-between;
    align-items:        center;
    padding-top:        0.5rem;
    padding-bottom:     0.5rem;
}

    .Filter select {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        padding: 0.75rem 1.25rem;
        border-radius: 0.375rem;
        font-weight: 600;
        color: #000000; /* Text color */
        background-color: #ffffff; /* Button background color */
        border: 1px solid #e2e8f0; /* Light border around the button */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        font-size: 1rem; /* Adjust font size */
    }

/* /CSS/Overlays/overlay.css */
@import 'overlay-small.css';
@import 'overlay-medium.css';
@import 'overlay-big.css';
@import 'overlay-settings.css';
@import 'overlay-user.css';
@import 'overlay-logout.css';
@import 'overlay-error.css';

:root {

    /* ------------------SHARED OVERLAY PROPERTIES LARGE MEDIUM SMALL ------------------------------------------------------------------------------------*/
    --overlay-padding: 2rem;
    --overlay-bg-color: white;
    --overlay-border-radius: 0.5rem;
    --overlay-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    --overlay-position: absolute;
    --overlay-top: 50%;
    --overlay-left: 50%;
    --overlay-transform: translate(-50%, -50%);
    --overlay-overflow: auto;
    --overlay-color: white;
      
    
    /* Layout properties */
    --overlay-display-flex: flex;
    --overlay-flex-direction-column: column;
    --overlay-display-block: block;
    --overlay-width-full: 100%;
    --overlay-align-items-center: center;
    --overlay-justify-content-center: center;
    --overlay-position-fixed: fixed;
    
    /* Form and input properties */
    --overlay-form-gap: 1rem;
    --overlay-form-margin-bottom: 0.5rem;
    --overlay-input-padding: 0.5rem;
    --overlay-input-bg-color: var(--InputBackground);
    --overlay-input-border-radius: 0.5rem;
    --overlay-input-error-border: 2px solid #CF0E0E;
    --overlay-input-error-bg: rgba(255, 228, 228, 1);
    --overlay-input-focus-border: 1px solid #ccc;
    
    /* Label properties */
    --overlay-label-font-size: 0.875rem;
    --overlay-label-font-weight: 600;
    --overlay-label-color: #4B5563;
    --overlay-label-margin: 0.25rem;
    
    /* Button properties */
    --overlay-button-padding: 0.75rem 1.25rem;
    --overlay-button-border-radius: 0.375rem;
    --overlay-button-font-weight: 600;
    --overlay-button-color: #000000;
    --overlay-button-bg: #ffffff;
    --overlay-button-border: 1px solid #e2e8f0;
    --overlay-button-font-size: 1rem;
    --overlay-button-hover-bg: #212121;
    --overlay-button-hover-color: #FFFFFF;
    --overlay-button-margin: 0;
    --overlay-button-cursor: pointer;

    /* Heading properties */
    --overlay-heading-margin-bottom: 1rem;
    --overlay-heading-text-align: center;
    --overlay-heading-padding-right: 6rem;
    --overlay-heading-padding-left: 6rem;
    --overlay-heading-overflow-wrap: break-word;
    --overlay-heading-word-break: break-word;


    /* Select properties */
    --overlay-select-width: 100%;
    --overlay-select-padding: 0.5rem;
    --overlay-select-margin-bottom: 1rem;
    --overlay-select-bg-color: rgba(243, 244, 246, 1);
    --overlay-select-border-radius: 0.5rem;
    --overlay-select-transform: translateY(-0.3rem);
    --overlay-select-font-weight: 400;
    --overlay-select-option-bg: #FFFFFF;

    /* Data properties */
    --overlay-data-margin-top: 1rem;
    --overlay-checkbox-margin-bottom: 1rem;
	/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------- */
}

.OverlayContainer {
    position: var(--overlay-position-fixed);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: var(--overlay-display-flex);
    justify-content: var(--overlay-justify-content-center);
    align-items: var(--overlay-align-items-center);
    background-color: transparent;
    z-index: 1001;
}
.overlay-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    text-align: center;
}

.Hidden {
    display: none;
}

.ErrorMsg {
	color:			red;
	font-weight:	bold;
}
 




/* /CSS/Overlays/overlay-big.css */
.OverlayBig {
    position: var(--overlay-position);
    top: var(--overlay-left);
    left: var(--overlay-top);
    transform: var(--overlay-transform);
    padding: var(--overlay-padding);
    background-color: var(--overlay-bg-color);
    border-radius: var(--overlay-border-radius);
    box-shadow: var(--overlay-box-shadow);
    overflow: var(--overlay-overflow);
    max-height: 90vh;
    max-width: 999px;
    font-family: Arial, Helvetica, sans-serif;
}

    .OverlayBig form {
        display: var(--overlay-display-flex);
        flex-direction: var(--overlay-flex-direction-column);
    }

    .OverlayBig h1 {
        text-align: var(--overlay-heading-text-align);
        margin-bottom: var(--overlay-heading-margin-bottom);
        padding-right: var(--overlay-heading-padding-right);
        padding-left: var(--overlay-heading-padding-left);

    }

    .OverlayBig .Grid4x1Div .Data {
        display: grid;
    }

    .OverlayBig .Data label {
        display: var(--overlay-display-block);
        font-size: var(--overlay-label-font-size);
        font-weight: var(--overlay-label-font-weight);
        color: var(--overlay-label-color);
        margin-bottom: var(--overlay-label-margin);
    }

    .OverlayBig .Data input:not([type="checkbox"]) {
        width: var(--overlay-width-full);
        padding: var(--overlay-input-padding);
        margin-bottom: var(--overlay-form-gap);
        background-color: var(--overlay-input-bg-color);
        border-radius: var(--overlay-input-border-radius);
    }

    .OverlayBig .Data input[type="checkbox"] {
        margin-bottom: var(--overlay-checkbox-margin-bottom);
    }

    .OverlayBig .Data input:not([type="checkbox"]):focus {
        border: var(--overlay-input-focus-border);
        outline: none;
    }

    .OverlayBig .Data input.input-error {
        border: var(--overlay-input-error-border);
        background-color: var(--overlay-input-error-bg);
    }

    .OverlayBig .Data select {
        width: var(--overlay-select-width);
        padding: var(--overlay-select-padding);
        margin-bottom: var(--overlay-select-margin-bottom);
        background-color: var(--overlay-select-bg-color);
        border-radius: var(--overlay-select-border-radius);
        transform: var(--overlay-select-transform);
        font-weight: var(--overlay-select-font-weight);
    }

    .OverlayBig .Data option {
        background-color: var(--overlay-select-option-bg);
    }

    .OverlayBig button {
        display: var(--overlay-display-flex);
        align-items: var(--overlay-align-items-center);
        padding: var(--overlay-button-padding);
        border-radius: var(--overlay-button-border-radius);
        font-weight: var(--overlay-button-font-weight);
        color: var(--overlay-button-color);
        background-color: var(--overlay-button-bg);
        border: var(--overlay-button-border);
        cursor: var(--overlay-button-cursor);
        font-size: var(--overlay-button-font-size);
        margin-bottom: var(--overlay-button-margin);
        margin-right: var(--overlay-button-margin);
    }

    .OverlayBig button:hover {
        background-color: var(--overlay-button-hover-bg);
        color: var(--overlay-button-hover-color);
    }

    .OverlayBig button[name^="FktDelete"] {
		border: 1px solid #CF0E0E;
		color: #CF0E0E;
	}

	.OverlayBig button[name^="FktDelete"]:hover {
		background-color: #CF0E0E;
		color: #FFFFFF;
	}

/* /CSS/Overlays/overlay-small.css */
.OverlaySmall {
    position: var(--overlay-position);
    top: var(--overlay-left);
    left: var(--overlay-top);
    transform: var(--overlay-transform);
    padding: var(--overlay-padding);
    background-color: var(--overlay-bg-color);
    border-radius: var(--overlay-border-radius);
    box-shadow: var(--overlay-box-shadow);
    overflow: var(--overlay-overflow);
    max-height: 44.5vh;
    max-width: 444px;
}

    .OverlaySmall form {
        display: var(--overlay-display-flex);
        flex-direction: var(--overlay-flex-direction-column);
    }

    .OverlaySmall form > *:not(:last-child) {
        margin-bottom: var(--overlay-form-margin-bottom);
    }

    .OverlaySmall h1 {
        text-align: var(--overlay-heading-text-align);
        margin-bottom: var(--overlay-heading-margin-bottom);
        overflow-wrap: var(--overlay-heading-overflow-wrap);
        word-break: var(--overlay-heading-word-break);
    }

    .OverlaySmall .Grid4x1Div .Data {
        display: grid;
    }

    .OverlaySmall .Data {
        margin-top: var(--overlay-data-margin-top);
    }

    .OverlaySmall .Data label {
        display: var(--overlay-display-block);
        font-size: var(--overlay-label-font-size);
        font-weight: var(--overlay-label-font-weight);
        color: var(--overlay-label-color);
        margin-bottom: var(--overlay-label-margin);
    }

    .OverlaySmall .Data input:not([type="checkbox"]) {
        width: var(--overlay-width-full);
        padding: var(--overlay-input-padding);
        margin-bottom: var(--overlay-form-gap);
        background-color: var(--overlay-input-bg-color);
        border-radius: var(--overlay-input-border-radius);
    }

    .OverlaySmall .Data input[type="checkbox"] {
        margin-bottom: var(--overlay-checkbox-margin-bottom);
    }

    .OverlaySmall .Data input:not([type="checkbox"]):focus {
        border: var(--overlay-input-focus-border);
        outline: none;
    }

    .OverlaySmall .Data input.input-error {
        border: var(--overlay-input-error-border);
        background-color: var(--overlay-input-error-bg);
    }

    .OverlaySmall .Data select {
        width: var(--overlay-select-width);
        padding: var(--overlay-select-padding);
        margin-bottom: var(--overlay-select-margin-bottom);
        background-color: var(--overlay-select-bg-color);
        border-radius: var(--overlay-select-border-radius);
        transform: var(--overlay-select-transform);
        font-weight: var(--overlay-select-font-weight);
    }

    .OverlaySmall .Data option {
        background-color: var(--overlay-select-option-bg);
    }

    .OverlaySmall button {
        display: var(--overlay-display-flex);
        align-items: var(--overlay-align-items-center);
        padding: var(--overlay-button-padding);
        border-radius: var(--overlay-button-border-radius);
        font-weight: var(--overlay-button-font-weight);
        color: var(--overlay-button-color);
        background-color: var(--overlay-button-bg);
        border: var(--overlay-button-border);
        cursor: var(--overlay-button-cursor);
        font-size: var(--overlay-button-font-size);
        margin-bottom: var(--overlay-button-margin);
        margin-right: var(--overlay-button-margin);
    }

    .OverlaySmall > button:hover {
        background-color: var(--overlay-button-hover-bg);
        color: var(--overlay-button-hover-color);
    } 

/* /CSS/Overlays/overlay-medium.css */
.OverlayMedium {
    position: var(--overlay-position);
    top: var(--overlay-left);
    left: var(--overlay-top);
    transform: var(--overlay-transform);
    padding: var(--overlay-padding);
    background-color: var(--overlay-bg-color);
    border-radius: var(--overlay-border-radius);
    box-shadow: var(--overlay-box-shadow);
    overflow: var(--overlay-overflow);
    max-height: 77vh;
    max-width: 666px;
}

    .OverlayMedium form {
        display: var(--overlay-display-flex);
        flex-direction: var(--overlay-flex-direction-column);
    }

    .OverlayMedium form > *:not(:last-child) {
        margin-bottom: var(--overlay-form-margin-bottom);
    }

    .OverlayMedium h1 {
        text-align: var(--overlay-heading-text-align);
        margin-bottom: var(--overlay-heading-margin-bottom);
        padding-right: var(--overlay-heading-padding-right);
        padding-left: var(--overlay-heading-padding-left);
        overflow-wrap: var(--overlay-heading-overflow-wrap);
        word-break: var(--overlay-heading-word-break);
    }

    .OverlayMedium .Grid4x1Div .Data {
        display: grid;
    }

    .OverlayMedium .Data {
        margin-top: var(--overlay-data-margin-top);
    }

    .OverlayMedium .Data label {
        display: var(--overlay-display-block);
        font-size: var(--overlay-label-font-size);
        font-weight: var(--overlay-label-font-weight);
        color: var(--overlay-label-color);
        margin-bottom: var(--overlay-label-margin);
    }

    .OverlayMedium .Data input:not([type="checkbox"]) {
        width: var(--overlay-width-full);
        padding: var(--overlay-input-padding);
        margin-bottom: var(--overlay-form-gap);
        background-color: var(--overlay-input-bg-color);
        border-radius: var(--overlay-input-border-radius);
    }

    .OverlayMedium .Data input[type="checkbox"] {
        margin-bottom: var(--overlay-checkbox-margin-bottom);
    }

    .OverlayMedium .Data input:not([type="checkbox"]):focus {
        border: var(--overlay-input-focus-border);
        outline: none;
    }

    .OverlayMedium .Data input.input-error {
        border: var(--overlay-input-error-border);
        background-color: var(--overlay-input-error-bg);
    }

    .OverlayMedium .Data select {
        width: var(--overlay-select-width);
        padding: var(--overlay-select-padding);
        margin-bottom: var(--overlay-select-margin-bottom);
        background-color: var(--overlay-select-bg-color);
        border-radius: var(--overlay-select-border-radius);
        transform: var(--overlay-select-transform);
        font-weight: var(--overlay-select-font-weight);
    }

    .OverlayMedium .Data option {
        background-color: var(--overlay-select-option-bg);
    }

    .OverlayMedium button {
        display: var(--overlay-display-flex);
        align-items: var(--overlay-align-items-center);
        padding: var(--overlay-button-padding);
        border-radius: var(--overlay-button-border-radius);
        font-weight: var(--overlay-button-font-weight);
        color: var(--overlay-button-color);
        background-color: var(--overlay-button-bg);
        border: var(--overlay-button-border);
        cursor: var(--overlay-button-cursor);
        font-size: var(--overlay-button-font-size);
        margin-bottom: var(--overlay-button-margin);
        margin-right: var(--overlay-button-margin);
    }

    .OverlayMedium > button:hover {
        background-color: var(--overlay-button-hover-bg);
        color: var(--overlay-button-hover-color);
    } 

/* /CSS/Overlays/overlay-error.css */
.OverlayErrorMessage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid red;
    background: #ffcccc;
    padding: 1em;
    justify-content: center;
}

    .OverlayErrorMessage .Buttongroup {
        display: flex;
        justify-content: center;
        margin-top: 1em;
    }

.FieldError {
    color: red;
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    margin-top: -1rem;
    margin-bottom: 1rem;
} 

/* /CSS/Overlays/overlay-logout.css */
.OverlayLogout {
    max-width: 450px;
    padding: 2.5rem 2.5rem;
    max-height: fit-content !important;
}

    .OverlayLogout h1 {
        text-align: center;
        margin-bottom: 0;
        color: black;
        font-size: 3rem;
        font-weight: 700;
        margin-top: 0.5rem;
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .OverlayLogout h2 {
        font-size: 1rem;
        text-align: center;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .OverlayLogout h3 {
        font-size: 1.125rem;
        font-weight: 900;
    }

    .OverlayLogout .LeftAlign {
        margin-bottom: 1rem;
    }

    .OverlayLogout h4 {
        font-size: 2rem;
        font-weight: 600;
    }

    .OverlayLogout button {
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }

    .OverlayLogout button:hover {
        background-color: var(--overlay-button-hover-bg);
        color: var(--overlay-button-hover-color);
    }

    .OverlayLogout .RightAlign {
        justify-content: center;
        margin-top: 1rem;
        align-items: center;
    }

    .OverlayLogout .Logo {
        width: 5rem
    }

    .OverlayLogout .UserInfo {
        align-content: center;
    }

    .OverlayLogout .Circle {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background-color: #FFE492;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        cursor: pointer;
        font-weight: bold;
        margin-right: 0.5rem;
    } 


    .OverlayLogout .StandardButton{
        color: white;
        background-color: black;

    }


/* /CSS/Overlays/overlay-user.css */
.OverlayUserProfile {
    top: 4rem;
    right: 0.75rem;
    border-radius: 1rem;
}

    .OverlayUserProfile .Data {
        display: block;
        margin-left: 0.5rem;
    }

    .OverlayUserProfile .Data label {
        font-size: 0.75rem;
    } 


.OverlayUserClient {
    top:    61px;
    left:   3.25rem;
}

/* /CSS/Overlays/overlay-settings.css */
.OverlaySettings {
    position: absolute;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    border-radius: 0.375rem;
    box-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    --ring-color: #000000;
    --ring-opacity: 0.05;
    width: 14rem;
    background-color: #ffffff;
    transform-origin: top right;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-width: 1px;
    border-color: #e2e8f0;
    animation: slideDown 0.2s ease-out forwards;
    transform: scaleY(0);
    opacity: 0;
}

    .OverlaySettings button {
        display: flex;
        flex-grow: 1;
        border-radius: 0.375rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: black;
        background-color: #FFFFFF;
    }

    .OverlaySettings button:hover {
        background-color: black;
        color: white;
    }


    .OverlaySettings .DisabledButton {
        display: flex;
        flex-grow: 1;
        border-radius: 0.375rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: gray;
        background-color: #FFFFFF;
        cursor: not-allowed;
    }

    .OverlaySettings .DisabledButton:hover {
        background-color: White;
        color: gray;
    }

    .OverlaySettings hr {
        border: 0.02rem solid #e2e8f0;
        border-radius: 0.375rem;
        width: 92%;
        margin: 5px auto;
    }

    .OverlaySettings .Data label {
        font-size: 0.75rem;
        font-weight: 400;
        color: #939aa3;
    }

    .OverlaySettings .Data p {
        display: flex;
        justify-content: start;
        margin-bottom: 0rem;
        padding-left: 0rem;
        font-weight: 700;
        background-color: transparent;
        border-radius: 0rem;
        padding: 0rem;
        min-height: 0rem;
    }

    .OverlaySettings form {
        display: flex;
        flex-direction: column;
    }


/* /CSS/SearchDropdown/Global.css */
/* Standard styling - applies globally */
.dropdown-container {
	display: flex;
	align-items: center;
	padding: 0.75rem 1.25rem;
	border-radius: 0.375rem;
	background-color: white;
	color: #212121;
	overflow: hidden;
	box-shadow: none;
	position: relative;
	z-index: 0;
	transition: background-color 0.3s, border-color 0.3s;
	box-sizing: border-box;
	border: 1px solid #e2e8f0;
}

.dropdown-container:focus {
	outline: none;
	border-color: #212121;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom: none;
	background-color: #F3F4F6;
}

.dropdown-container::after {
	display: none;
}

.SearchDropdownHidden {
	display: none;
}

.SearchDropdownShown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: white;
	z-index: 100;
	border: 1px solid #212121;
	max-height: 300px;
	overflow-y: auto;
	box-sizing: border-box;
	border-radius: 0.375rem;
	border-top: none;
	border-top-left-radius: 0rem;
	border-top-right-radius: 0rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.SearchDropdownShown.OpenUpwards {
	top: auto;           /* reset top */
	bottom: calc(100%);  /* position above the input */
	border-bottom-left-radius: 0rem;
	border-bottom-right-radius: 0rem;
	border-top-left-radius: 0.375rem;
	border-top-right-radius: 0.375rem;
  
	/* Flip the box-shadow so it appears "above" the input instead of below */
	box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  }

.SearchDropdownShown > p {
	background-color: white;
	margin-bottom: 0;
	padding: 0.75rem 1.25rem;
	min-height: 0;
	transition: background-color 0.3s;
}

.SearchDropdownShown > p:empty {
	padding: 0;
}

.SearchDropdownShown > p:hover {
	background-color: #F3F4F6;
}



/* /CSS/SearchDropdown/Overlay.css */
.OverlayContainer .dropdown-container {
	font-size: 0.875rem;
	background-color: #F3F4F6;
	border: none;
}

.OverlayContainer .dropdown-container:focus {
	position: relative;
    border-color: #e2e8f0;
}

.TopCorners:focus {
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
  }

.BottomCorners:focus {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
  }


.OverlayContainer .SearchDropdownShown {
	border: 1px solid #ccc;
	width: 100%;
	transform: translateY(-1rem);
	font-size: 0.875rem;
	top: auto;
}

.OverlayContainer .SearchDropdownShown > p {
	border-radius: 0;
	padding: 0.5rem;
}

/* /CSS/Collapsible.css */
.CollapsibleContainer {
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.CollapsibleContainer > button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.125rem;
    margin-bottom: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
    background-color: #e2e8f0;
}

    .CollapsibleContainer > button.collapsible:hover {
        background-color:   #E5E7EB;
        color:              black;
    }

.ParentCollapsible > button {
    background-color: #F9FAFB;
}


.CollapsibleContainer .header {
    font-size: medium;
    margin-left: 0.3rem;
}


.ParentCollapsible .CollapsibleContainer .header > a:hover {
    text-decoration: underline;
}

    .CollapsibleContainer .header p {
        font-size: 1rem;
        color: gray;
        font-style: italic;
        text-align: left;
    }

.CollapsibleContainer > button:hover {
    background-color: #E5E7EB;
    color: black;
}

.ParentCollapsible > button:hover {
    text-decoration: none;
}

.CollapsibleContainer > button.active {
    background-color: #ffffff;
    border-radius: 0.5rem 0.5rem 0 0;
  
}

.ParentCollapsible > button.active {
    background-color: #F9FAFB;
    border-bottom:      1px solid #e2e8f0;;
    margin-bottom:      0.5rem;
}

.CollapsibleContainer > button.active .arrow img {
    display: inline-block;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.CollapsibleContainer > button.active:hover {
    background-color: #E5E7EB;
}

.ParentCollapsible > button.active:hover {
    background-color: #E5E7EB;
    text-decoration: none;
}

.CollapsibleContainer .arrow {
    display: flex;
    gap: 1rem;
}

.CollapsibleContainer p {
    font-size: medium;
}

.CollapsibleContainer h4 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.CollapsibleContainer .collapsible-content > button:hover {
    background-color: #212121;
    color: #FFFFFF;
}

.CollapsibleContainer .boldP {
    font-weight: 600;
    font-size: 1rem;
}

.CollapsibleContainer > button:focus,
.CollapsibleContainer .collapsible-content > button:focus {
    outline: none;
}

.CollapsibleContainer .collapsible-content {
    border-radius: 0 0 0.5rem 0.5em;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.collapsible.active + .collapsible-content {
    max-height: fit-content;
}

.collapsible .header {
    text-align: start;
}


/* /CSS/Div.css */
.Div05P {
	padding: 0.5rem;
}

 .Flex {
	display: flex;
 }
 

 .Grid2x1Div{
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
 }

 .Grid3x1Div{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
 }

 	.Grid3x1Div > :nth-child(2):nth-last-child(1) {
		grid-column: span 2;
	}

 .Grid3x3Div {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(3, minmax(0px, 1fr));
 }
 
 .Grid4x1Div{
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
 }

.Grid4x1DivFirst{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

	.Grid4x1DivFirst > :nth-child(1) {
		grid-column: span 2;
	}
 

 .FlexColDiv{
	flex-direction: column;
	display: flex ;
 }


 .Gap1{
	gap: 1rem;
 }

 .Div2P{
	padding: 2rem;
 }

 .LeftRightItemsDiv{
	display: 			flex;
	justify-content: 	space-between;
	align-items: 		center;
	margin-bottom: 		0.5rem;
 }

 .RightAlign {
	display: flex; 
    justify-content: flex-end; 
    gap: 0.5rem; 
 }

 .CenterButton {
	display: flex; 
	flex-direction: column;
    justify-content: space-between; 
    gap: 0.5rem;  
 }

 .LeftAlign {
	display: flex; 
    justify-content: flex-start; 
 }

 .ContactsCollapsibleInfo {
	min-height: 		3rem;
 }

 h1 {
	font-size: x-large;
 }

 h2 {
	font-size: large;
	font-weight: normal;
 }

 h3 {
	font-weight: bold;
	font-size: x-large;
 }


.boldP {
	font-weight: 600;
	font-size: 1rem;
}

.EmailContainer {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f3f3;
	border-radius: 0.5rem;
	padding: 0.5rem;
	width: 90%;
	gap: 0.5rem;
	font-size: 0.9rem;
}


.PageHeader {
	margin-top: 4rem;
	margin-bottom: 2rem;
}

.Panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem;
	border: solid 1px rgba(0, 0, 0, 0.2);
	border-radius: 1rem;
	background: white;
	width: 300px;
	height: 300px;
}

	.PanelHeader {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.PanelContent {
		flex-grow: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.PanelHeader h1 {
		display: flex;
		align-items: start;
		gap: 0.5rem;
		font-size: 1.2rem;
		font-weight: bold;
	}

	.PanelContent img {
		max-width: 150px;
		margin: 1rem 0;
	}

	.PanelHeader p {
		color: #555;
		font-size: 0.9rem;
		margin: 0.5rem 0;
	}

	.PanelContent .ActionsLink {
		display: flex;
		align-items: center;
		padding: 0.75rem 1.25rem;
		border-radius: 0.375rem;
		font-size: 16px;
		overflow: hidden;
		box-shadow: none;
		position: relative;
		z-index: 0;
		background: black;
		cursor: pointer;
		margin: 0;
	}

	.PanelContent .ActionsLink a {
		color: white;
	}

	.PanelContent .ActionsLink svg {
		height: 16px;
		width: 16px;
		margin-left: 0.5rem;
	}

		.PanelContent .ActionsLink svg path {
			stroke: #fff;
		}
	




/* /CSS/Documents.css */
.DocumentPreview {
    text-align: center; /* Ensures the content is centered horizontally */
  }
  
  .DocumentPreview img {
    display: block; /* Convert image to block-level */
    margin: 0 auto; /* Horizontally center the image */
    width: 300px; /* Set the desired width */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Crop the image to fit if necessary */
    border-radius: 5px;
  }
  


/* /CSS/Gallery.css */


.OverlaySlideshow .Label {
	text-align: center;
}

.Gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem; /* Added for consistent spacing between items */
	justify-content: flex-start; /* Center items horizontally */
}

.GalleryPicture {
	margin: 0.5em;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.GalleryPicture h1 {
	font-size: 1.0em;
	font-weight: normal;
}

.GalleryPicture h2 {
	font-size: 0.8em;
	font-weight: normal;
	margin: 0;
}

.GalleryPicture img {
	width: 300px; /* Fixed width */
	height: 300px; /* Fixed height */
	object-fit: cover; /* Ensures the image is cropped to fill the container */
	border-radius: 0.5rem; /* Optional: adds a slight rounding to the images */
}

.OverlaySlideshow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Ensures text like Position is visible */
	align-content: center;
}

.OverlaySlideshow .ImageContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent; /* Ensure ImageContainer itself is transparent */
}

.OverlaySlideshow .ImageContainer img {
    box-sizing: border-box;
    max-height: 800px;
    height: auto;
    max-width: 900px;
    width: auto;
    z-index: 1; /* Ensures image stays on top */
    border-radius: 1rem;
}

.OverlaySlideshow .Position,
.OverlaySlideshow .Label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: transparent; /* Transparent background */
    z-index: 2; /* Keep above transparency */
    bottom: -3rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.OverlaySlideshow #FktNext,
.OverlaySlideshow #FktPrevious {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; /* Ensure buttons are above background */
    /* background-color: rgba(255, 255, 255, 0.7); /* Slightly opaque background for visibility */
    /* border: 1px solid rgba(255, 255, 255, 0.9); */ 
    padding: 5px 10px;
    cursor: pointer;
}


.OverlaySlideshow .Delete {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; /* Ensure buttons are above background */
    padding: 5px 10px;
    cursor: pointer;
    left: 0rem;
    top: 2rem;
}

.OverlaySlideshow .Download{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; /* Ensure buttons are above background */
    padding: 5px 10px;
    cursor: pointer;
    right: 0rem;
    top: 2rem;
    width: 45px;       /* You can adjust this */
    height: 45px;
}


.OverlaySlideshow #FktNext {
    right: -5rem;
}

.OverlaySlideshow #FktPrevious {
    left: -5rem;
}

.OverlaySlideshow button:disabled {
    display: none;
}




/* /CSS/Status.css */
.StatusFilter {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	width: fit-content;
	border: 1px solid #e2e8f0;
	padding: 0.5rem;
	border-radius: 0.375rem;
	align-items: center;
}

.StatusChips {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
}


[class^="Status"]:not(.StatusChips):not(.StatusFilter) {
	border-radius: 1rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
	padding-left: 0.15rem;
	padding-right: 0.8rem;
	color: #FFFFFF;
	justify-content: space-between;
	gap: 0.5rem;
	width: 70px;
	transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}

/* Compact style for icons-only */
[class^="Status"]:not(:has(span)) {
	width: 28px !important;
	padding-right: 0.15rem !important;
	justify-content: center;
}

[class^="Status"]:not(.StatusChips) svg path {
	stroke: #fff;
}

/* Active States */
.StatusUnknown {
	background-color: #565D6D;
}

.StatusOk {
	background-color: #4CAF50;
}

.StatusWarning {
	background-color: #FFC107;
}

.StatusOverdue {
	background-color: #CF0E0E;
}

/* Inactive State (applies to all with .inactive class) */
/* General inactive state */
.inactive {
    pointer-events: none; /* Make it non-interactive */
    cursor: not-allowed; /* Visual cue for non-interactivity */
    
    background-color: rgba(169, 169, 169, 0.3); /* Faded background color */
    color: rgba(255, 255, 255, 0.6); /* Faded text color */
    z-index: auto; /* Ensure it doesn't override the sticky header */
  }
  
  /* Ensure the background color is still visible */
  .StatusUnknown.inactive {
    background-color: rgba(86, 93, 109, 0.5); /* Faded gray */
  }
  
  .StatusOk.inactive {
    background-color: rgba(76, 175, 80, 0.5); /* Faded green */
  }
  
  .StatusWarning.inactive {
    background-color: rgba(255, 193, 7, 0.5); /* Faded yellow */
  }
  
  .StatusOverdue.inactive {
    background-color: rgba(207, 14, 14, 0.5); /* Faded red */
  }
  
.inactive svg path {
	stroke: #D3D3D3; /* Gray stroke for icons in inactive state */
}


/* /CSS/Multiselect.css */
.multiselect-wrapper {
    position: relative;
    width: 100%;
  
} 

.OverlayContainer .multiselect-wrapper {
    margin-bottom: 1rem;
  
} 

.multiselect-input {
    width: 100%;
    padding: 0.25rem;
    box-sizing: border-box;
    margin-bottom: 0rem !important;

}

.multiselect-input-focus {
  margin-bottom: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-bottom-right-radius: 0rem !important;
  border: 1px solid #ccc;
}

.multiselect-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    background: #fff;
    max-height: 300px;
    overflow-y: auto;
	overflow-x: hidden;
    display: none;
	z-index: 100;
}

.multiselect-options.MultiselectHidden {
    display: none !important;
}

.multiselect-options.MultiselectShown {
    display: block;
}

.multiselect-item {
    display: flex;
	flex-direction: row !important;
    align-items: center;
    padding: 5px;
    border-right: 1px solid #e2e8f0 !important;
}

.multiselect-item input[type="checkbox"]{
    margin-bottom: 0rem !important;
}

.multiselect-item label {
    margin-left: 5px;
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
    margin-right: 0px;
}


.clear-button {
    position: absolute;
    top: 50%;
    right: 0.75em;  
    transform: translateY(-50%);
    
    cursor: pointer;
    
  }

/* /CSS/Buttons/StandartButton.css */
.SectionContent button {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    font-size: medium;
    background-color: transparent;
    color: #212121;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    z-index: 0;
}

	.SectionContent button:hover {
		color: #FFFFFF;
		background-color: #212121; /* Both buttons turn black on hover */
	}

	.SectionContent button[name^="FktDelete"] {
		border: 1px solid #CF0E0E;
		color: #CF0E0E;
	}

	.SectionContent button[name^="FktDelete"]:hover {
		background-color: #CF0E0E;
		color: #FFFFFF;
	}

	.SectionContent button svg {
		height: 16px;
		width: 16px;
		margin-left: 0.5rem;
	}

	.SectionContent button:hover svg path {
		stroke: #fff;
	}

	.SectionContent button:disabled {
		cursor:		not-allowed;
		opacity:	0.4;
	}
 

/* /CSS/LoginPage.css */
.LoginWindow {
	background-color: #ffffff;
	display: 			flex;
	flex-direction: 	column;
	border-radius: 		1rem;
	width: 				345px;
	padding: 			2rem;
	gap: 				1rem;
	box-shadow: 		0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

	.LoginWindow .Header {
		display: 			flex;
		justify-content: 	center;
		align-items: 		center;
	}

	.LoginWindow .Header h1 {
		font-size: 2.75rem;
	}

	.LoginWindow .Header img {
		width: 5rem;
		height: 5rem;
	}

	.LoginWindow label {
		align-self: center;
		font-weight: bold;
	}

	.LoginWindow input {
		padding: 0.75rem;
		border-radius: 0.25rem;
		border-bottom: 2px solid;
	}

	.LoginWindow button {
		padding: 0.75rem;
		width: 100%;
		background-color: black;
		border-radius: 0.25rem;
		color: white;
		font-weight: bold;
		font-size: small;
		cursor: pointer;
		justify-content: center;
	}

		.LoginWindow button:hover {
			background-color: #111827;
		}

	.LoginWindow a {
		align-self: center;
		font-size: smaller;
		text-decoration: underline;
	}

