@charset "utf-8";
/* CSS Document */

/* ----------------------------------------------------------------------------- *
 *                           Style by www.a-krueger.eu                           *
 * ----------------------------------------------------------------------------- */

/* Dark mode */
:root.dark {
    --primary: #A64B4B;
    --secondary: #D99C9C;
	--third: #e8cdc2;
	--contrast-dark: #000000;
	--contrast-light: #F2E2DC;
    --background: #e8cdc2;
    --text: #808080;
	--btn-bg: #A64B4B;
	--btn-border: #A64B4B;
	--btn-text: #e8cdc2;
	--header-bg: #000000;
	--nav-bg: #000000;
	--border: #333333;
	--footer-bg: #000000;
	--footer-text: #808080;
	--container: #333333;
	--table-header-bg: #A64B4B;
	--table-header-text: #e8cdc2;
	--table-bg: #e8cdc2;
	--table-text: #333333;
	
}

/* light mode */
:root.light {

}


/* ---------------------------------------------------------------*/
/*                           Header                               */
/* ---------------------------------------------------------------*/
header {
	margin: 0 auto;
	width: 100%;
	height: 80px;
	position: fixed;
	z-index: 99999;
	top: 0;
	}

#header-bg {
	height: 80px;
	top: 0;
	position: relative;
	background-color: var(--header-bg);
}

#header-limiter {
	margin: 0 auto;
	margin-top: 0;
	margin-bottom: 5px;
	max-width: 1200px;
	height: 80px;
	position: relative;
	}

#header-limiter:after {
  	content: "";
  	display: table;
  	clear: both;
}


/* -----------------------------Logo----------------------------*/

.header-container {
	top: 25%;
	width: 100%;
	position: relative;
}

.logo {
	float: left;
	width: 20%;
	max-width: 200px;
	position: absolute;
	z-index: 2;
	}

.logo h1 {
	font-family: 'Roboto Condensed', "Arial Narrow", sans-serif;
	font-size: 1.2em;
	font-weight: 300;
	color: var(--primary);
	padding-top: 5px;
	}


/* ----------------------------Navtop----------------------------*/

#navtop {
	float: right;
	width: 80%;
	margin-top: 5px;
    position:relative;
	right: 0;
}
#navigation {
    margin: 0 auto;
    position: relative;
    float: right;
	top: 3px;
	right: 0;
	background-color: transparent;
    display: inline;
    padding: 0;
}
 
#navigation a {
	background-color: transparent;
	color: var(--primary);
  	padding: 0 12px 0 12px;
  	text-align: center;
  	text-decoration: none;
  	display: inline-block;
  	font-family: 'Roboto Condensed', sans-serif;
	font-size: 0.9em;
	text-transform: uppercase; 
	border-radius: 0;
	border-left: 0px solid var(--primary);
 
    -webkit-transition:color 0.2s linear, background 0.2s linear;
    -moz-transition:color 0.2s linear, background 0.2s linear;
    -o-transition:color 0.2s linear, background 0.2s linear;
    transition:color 0.2s linear, background 0.2s linear;
}
 
#navigation a:hover {
    color: var(--secondary);
}
 

/* ----------------------------------------------------------------------------- *
 *                                 Buttons                                       *
 * ----------------------------------------------------------------------------- */

button {
	margin: 0 auto;
	border-radius: 3px;
	outline: none;
  	padding: 5px 10px 5px 10px;
  	font-size: 14px;
  	font-family: "Open Sans", "Roboto";
  	cursor: pointer;
	min-width: 110px;
	background-color: var(--btn-bg);
	color: var(--btn-text);
	border: 1px solid var(--btn-border);
	text-decoration: none;
}

button:hover {
  	opacity: 0.8;
	text-decoration: none;
}

/* ----------------------------------------------------------------------------- *
 *                              form Buch details                                *
 * ----------------------------------------------------------------------------- */
.form_buchdetails {
	margin: 0 auto;
	padding: 5px;
	width: 100%;
	max-width: 600px;
}

.form_buchdetails label {
    display: block;
    margin-bottom: 12px;
}

.form_buchdetails input {
    width: 100%;
    padding: 6px 8px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
}

.form_buchdetails textarea {
    width: 100%;
	margin-left: 5px;
    padding: 6px 8px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
}

/* ----------------------------------------------------------------------------- *
 *                                   Icons                                       *
 * ----------------------------------------------------------------------------- */

a.reset-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border: 1px solid var(--btn-border);
    text-decoration: none;
    margin-left: 5px;
    transition: opacity 0.2s ease;
}

a.reset-btn i {
    font-size: 16px;
    color: var(--secondary);
}

a.reset-btn:hover {
    opacity: 0.8;
}

/* ----------------------------------------------------------------------------- *
 *                                   Table                                       *
 * ----------------------------------------------------------------------------- */

.suche { width: 100%; max-width: 300px; padding: 7px; }


table { width: 100%; border-collapse: collapse; margin-top: 40px; }

tr {
	background-color: var(--table-header-bg);
}

tr:hover { 
	background-color: var(--second); 
	cursor: pointer; 
}

th { 
	background-color: var(--table-header-bg); 
	border: 1px solid var(--table-header-bg);
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	font-size: 1.0em;
	color: var(--table-header-text);
	text-align: left;
	padding: 8px;
}

td {
	background-color: var(--table-bg);
	border: 1px solid var(--table-bg);
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	font-size: 0.9em;
	color: var(--table-text);
	text-align: left;
	padding: 8px;
}

@media (max-width: 600px) {
	table, thead, tbody, th, td, tr {
		display: block;
		width: 100%;
	}
	thead { display: none; }
	td {
		position: relative;
		padding-left: 50%;
	}
	td::before {
		position: absolute;
		left: 10px;
		top: 8px;
		white-space: nowrap;
		font-weight: bold;
		content: attr(data-label);
	}
}

