/* ==== BASE LAYOUT ==== */
body {
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 14px;
    min-width: 960px;
    overflow-x: auto;
    margin: 0;
    padding: 20px;
}




.main_table, .main_table tr, .table_main_content {
    width: 100%;
    height: 100%;
	padding-top: 20px;
}

.td_main_contend {
    height: 100%;
    overflow: auto;
}

/* ==== HEADER & NAVIGATION ==== */
.top_menue_div {
    width: 100%;
    height: auto;
    float: left;
	margin: 10px;
}

.side_menue_div {
    width: 150px;
    float: left;
    height: 100%;
}

.main_content_div {
	width: auto;
	height: auto;
	display: block;
	margin-left: 10px;  /* vorher: 150px */
	padding-left: 10px;
	margin-right: 15px;
	/* margin-top: 150px; */
}


/* ==== BUTTONS ==== */
.button {
/*    font-size: 11px;	
    height: 17px;
    max-width: 120px;
    text-align: left;
*/
    margin: 3px 3px 0 3px;
    min-width: 100px;
}

.new_chapter {
    margin-top: 15px;
}

.level2 {
    margin-left: 15px;
}

.add_person_button {
    color: #C00;
    font-weight: bold;
    margin: 15px 0 15px 50px;
    padding: 3px 8px;
}

/* ==== FILTER & FORM === */
.person_filter {
    float: left;
    margin: 15px 0 15px 20px;
    font-weight: bold;
    color: #C00;
}

.input_change_value {
    border: 0.5px solid silver;
    padding: 1px;
    margin: 1px;
    width: 96%;
}

.file_input_div {
    position: relative;
    width: 150px;
    height: 85px;
    margin-left: 50px;
    float: left;
}

.file_input_hidden {
    font-size: 45px;
    position: absolute;
    top: 0;
    left: -20px;
    opacity: 0;
    width: 200px;
    height: 85px;
}

/* ==== TABLE STYLES ==== */
.sortierbar {
    text-align: center;
}

thead.fixedHeader th {
    background: #C96;
    color: #FFF;
    padding: 4px;
    text-align: center;
    font-weight: bold;
    border: none;
}

tbody td {
    background: #FFF;
    padding: 2px 4px;
}

tbody tr:nth-child(even) td {
    background: #EEE;
}

/* ==== ZEBRA TABLE ROWS ==== */
.alternateRow td {
    background: #EEE;
}

.normalRow td {
    background: #FFF;
}

/* ==== TABS (optional) ==== */
#tabs {
    overflow: hidden;
    padding: 0;
    margin: 0;
    list-style: none;
}

#tabs li {
    float: left;
    margin-right: .5em;
}

#tabs a {
    background: linear-gradient(to bottom, #fff, #ddd);
    padding: 7px 14px;
    text-decoration: none;
    color: #444;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
    border-top: 1px solid silver;
    border-left: 1px solid silver;
}

#tabs a:hover {
    background: #fff;
}

#tabs #current a {
    background: #fff;
    z-index: 3;
}

/* ==== HEADINGS & TEXT ==== */
h1, h2, h3 {
/*    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;	*/
    margin: 0 0 10px 0;
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 18px;
}

h3 {
    font-size: 16px;
    color: #008000;
}

/* ==== GENERAL RESET ==== */
table, td, a {
    color: #000;
/*    font: normal 0.8rem Verdana, Geneva, Arial, Helvetica, sans-serif;	*/
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

    .form-heading {
        background-color: #1e6d89;
        color: white;
        padding: 4px 8px;
        font-weight: bold;
        display: block;
        margin-bottom: 4px;
    }
    input, textarea {
        width: 100%;
        padding: 6px;
        box-sizing: border-box;
    }


    .label1 {
        font-weight: bold;
        margin-bottom: 3px;
        display: inline-block;
        background-color: #1e6d89;
	padding: 5px;
	color: white;
    }


.floating-popup {
  position: absolute;
  z-index: 99999;
  background: #fff;
  border: 1px solid #aaa;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border-radius: 6px;
  font-family: sans-serif;
  font-size: 0.9em;
  max-width: 600px;
  min-width: 300px;
}


