/* Grundlegende Zurücksetzung */
* {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
  
	margin: 0;
	box-sizing: border-box;
}
  
h1 {
	color: #78797C;
	font-size: 1.2em;
	font-weight: 700;
}

dialog {
	width: auto;
	border-color: #828386;
	border-radius: 15px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

input:focus {
	outline: none;
	background-color: #EEE;
	border-radius: 5px;
	border: 3px solid #EEE;
}

/* Header-Bereich */
.header {
	display: flex;
	align-items: center;
	padding-top: 20px;
	padding-left: 3%;
	padding-right: 3%;
	justify-content: space-between;
}
  
.logo {
	width: auto;
	height: 55px;
}
  
.search-bar {
	display: flex;
	align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 50px;
	background-color: #d8d8d8;
	padding: 5px;
	border-radius: 10px;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.search-bar:hover {
	background-color: hsla(0, 0%, 72%, 0.7);
}
 
.search-bar * {
    outline: 1px solid red; /* Temporär zur Analyse */
}
 
.search-input {
	border: none;
	background: none;
	flex: 1;
}

.question-input {
	border: none;
	background: none;
	width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.side_button {
	filter: invert(50%) sepia(0%) saturate(300%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.side_button:hover {
	filter: invert(100%) sepia(0%) saturate(300%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.button-switch {
	width: 35px; /* Größe des Buttons */
	height: 35px;
	background-image: url('https://www.changelingz.4lima.de/data/gfx/question-mark-unlit.png'); /* Standardbild */
	background-size: contain;
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	cursor: pointer;
  }
  
  .button-switch.active {
	background-image: url('https://www.changelingz.4lima.de/data/gfx/question-mark-lit1.png'); /* Bild für den aktiven Zustand */
  }

.clear-button {
	background: none;
	border: none;
	color: #000000;
	cursor: pointer;
	margin-right: 8px;
}
  
.search-button {
	background: none;
	border: none;
	color: #000000;
	cursor: pointer;
}

.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
    pointer-events: none;
}

.tooltip-target {

    border: none;
    display: inline-block;

    cursor: pointer;
    position: relative;
}

.tooltip.visible {
    opacity: 1;
    visibility: visible;
}


/* Formularcontainer */
.form-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	padding-top: 20vh;
	padding-left: 3%;
	padding-right: 3%;
}
  
.input-group {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #d8d8d8;
	padding: 10px;
	border-radius: 10px;
	width: 100%;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.input-group:hover {
	background-color: rgba(184, 184, 184, 0.7);
}
  
.upload-path,
.dropdown,
.comments {
	flex: 1;
	color: #000000;
	background: none;
	border: none;
}

.dropdown {
	appearance: none;
	background: none;
	color: rgba(0, 0, 0);
}
  
.comments {
	height: 60px;
	padding: 5px;
	
}

.comments:focus {
	outline: none;
	background-color: #EEE;
	border-radius: 5px;
	border: 3px solid #EEE;
}

.upload-button,.link-button {
	background: none;
	border: none;
	color: #828386;
	cursor: pointer;
	margin-left: 8px;
}
  
.upload-submit {
	background-color: #d8d8d8;
	border: none;
	border-radius: 7px;
	padding: 10px 20px;
	cursor: pointer;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.upload-submit:hover {
	background-color: hsla(0, 0%, 72%, 0.7);
}

.da_home_container {
	display: flex;
  	justify-content: center; /* Zentriert horizontal */
}

.da_home_logo {
	width: 25%;
  	height: 25%;
  	object-fit: contain;
}

.da_red {
	color:#B62329;
}

.da_gray {
	color: #828386;
}

.da_blue {
	color: #203B8D;
}

.filemenu_list {
	height: 50vh;
	width: auto;
	background-color: #d8d8d8;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.filemenu_input {
	max-width: 100%;
	width: auto;
	border: none;
	background: none;
	
}

.filemenu_input_bg {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #d8d8d8;
	padding: 10px;
	border-radius: 5px;
	width: 100%;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.testserver_status_table {
	border: 2px solid;
	border-color: #828386;
	border-collapse: collapse;
	padding: 5px;
}

.testserver_status_text_bold {
	font-weight: bold;
}

.testserver_status_text_color {
	color: red;
}

.testserver_in_line {
	display: flex;
	align-items: flex-start;
	/* justify-content: space-evenly; */
	padding-top: 30px;
}

.testserver_main {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding-left: 3%;
	padding-right: 3%;
	width: 60%;
}

.testserver_logs {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding-left: 3%;
	padding-right: 3%;
	width: 40%;
}

.testserver_border {
	border: 1.5px solid black;
}

.testserver_upload_button {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	padding-top: 20px;
	padding-left: 3%;
	padding-right: 3%;
}

/*  ************************** */
/*  * BASIC STYLE COMPONENTS * */
/*  ************************** */

.basic_center {
	margin: auto;
}
  
.basic_width_auto {
	width: auto;
}

.basic_heigth_auto {
	height: auto;
}

.basic_link_no-underline {
	text-decoration: none;
}

.basic_text_center {
	text-align: center;
}

.basic_padding_2 {
	padding: 2px;
}

.basic_padding_5 {
	padding: 5px;
}

.basic_padding_10 {
	padding: 10px;
}

.basic_padding_20 {
	padding: 20px;
}

.basic_padding_50 {
	padding: 50px;
}

.basic_padding_bottom_50 {
	padding-bottom: 50px;
}

.basic_padding_right_10 {
	padding-right: 10px;
}
  
.basic_margin_5 {
	margin: 5px;
}  

.basic_margin_10 {
	margin: 10px;
}  

.basic_margin_20 {
	margin: 20px;
}

.basic_margin_30 {
	margin: 30px;
}

.basic_margin_top_5 {
	margin-top: 5px;
}

.basic_margin_top_10 {
	margin-top: 10px;
}

.basic_margin_top_20 {
	margin-top: 20px;
}

.basic_margin_top_30 {
	margin-top: 30px;
}

.basic_margin_top_50 {
	margin-top: 50px;
}

.basic_margin_bottom_30 {
	margin-top: 50px;
}

.basic_flex_justified {
	display: flex;
	justify-content: space-evenly;
}