        body {
            background-color: #fff;
         }

         .form-signin {
            max-width: 330px;
            padding: 15px;
            margin: 0 auto;
            color: #232f3e;
         }

         .form-signin .form-signin-heading,
         .form-signin .checkbox {
            margin-bottom: 10px;
         }

         .form-signin .checkbox {
            font-weight: normal;
         }

         .form-signin .form-control {
            position: relative;
            height: auto;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            padding: 10px;
            font-size: 16px;
         }

         .form-signin .form-control:focus {
            z-index: 2;
         }

         .form-signin input[type="email"] {
            margin-bottom: -1px;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
            border-color: #232f3e;
         }

     .form-signin input[type="password"] {
            margin-bottom: 10px;
            border-top-left-radius: 0;
            border-top-right-radius: 0;

         }
	.form_left{
  		display: inline-block;
	 }

       h2{
            text-align: center;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            color: #777777;
            font-size: 20px;
            line-height: 1.42857143;
            background-color: #fff;
}

        h1{
            text-align: center;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            color: #232f3e;
            font-size: 32px;
            background-color: #fff;
         }

        footer {
        position: fixed-bottom;
        background-color: #f8f8f8;
        width: 100%;
	height:100%;
 	margin-top: -50px; /* Höhe des Footers */
        }


a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    background: #232f3e;
    border: none;
    border-radius: 0;
    margin-bottom: 0px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.btn-login {
	background-color:#232f3e;
	border-color: #232f3e;
}
.btn-login:hover {
	background-color:#11171f;
	border-color: #11171f;
}

.login_label {
	border-color: #232f3e;
}

.login_label:hover {
	border-color: #11171f;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.dot_red {
  height: 25px;
  width: 25px;
  background-color: #ff0000;
  border-radius: 50%;
  display: inline-block;
}

.dot_green {
  height: 25px;
  width: 25px;
  background-color: #33cc33;
  border-radius: 50%;
  display: inline-block;
}


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #000;
    color: #fff;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding-left: 10px;
		padding-top: 20px;
    background: #000;
}


#sidebar ul.components {
    font-size: 13px;
    padding: 20px 0;
    border-bottom: 1px solid #232f3e;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #fff;
    background: #232f3e;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: ##232f3e;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

.btn-logout{
  background-color: #fff;
  border-color: #fff;
}

.btn-logout:hover{
  border-color: #212529;
}

hide_bus{display:none;}
hide_docs{display:none;}
hide_email{display:none;}
hide_team{display:none;}



/* -------------------------------------
Checkbox Styling
----------------------------------------*/

input[type='checkbox'] {
  display: none;
}

input[type='checkbox'] + label {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

input[type='checkbox'] + label:before {
  width: 30px;
  height: 18px;
  border-radius: 16px;
  border: 2px solid #ddd;
  background-color: #EEE;
  content: "";
  margin-right: 10px;
  transition: background-color 0.5s linear;
}

input[type='checkbox'] + label:after {
  width: 14px;
  height: 14px;
  border-radius: 16px;
  background-color: #fff;
  content: "";
  transition: margin 0.1s linear;
  box-shadow: 0px 0px 5px #aaa;
  position: absolute;
  left: 2px;
  top: 2px;
}

input[type='checkbox']:checked + label:before {
  background-color: #232f3e;
}

input[type='checkbox']:checked + label:after {
  margin: 0 0 0 15px;
}




/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -190px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
}

#btn{
  border-radius: 0px;  
}

#scroll_up {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #232f3e; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 100%; /* Rounded corners */
  font-size: 16px; /* Increase font size */
}

#scroll_up:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

#redbtn {
  background-color: #cc0000;
  font-size: 16px;
  color: white;
  padding: 4px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 4px;
  border-radius: 0px;  
}

#redbtn:hover {
  background-color: #990000; /* Add a dark-grey background on hover */
}


#greenbtn {
  background-color: #00b300;
  font-size: 16px;
  color: white;
  padding: 4px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 4px;
  border-radius: 0px;  
}

#greenbtn:hover {
  background-color: #004d00; /* Add a dark-grey background on hover */
}


#changebtn {
  background-color: #232f3e;
  font-size: 16px;
  color: white;
  padding: 4px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 4px;
  border-radius: 0px;  
}

#changebtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

#advanced{display:none;}

#ccconfig{display:none;}

#change {
  padding: 3px;
  width: 80%;
  border: none;
  border-bottom-style:solid;
  border-width: 2px;
  border-color: #232f3e;
  background-color:# ;
}

#loglines{
  padding: 3px;
  border: none;
  border-bottom-style:solid;
  border-width: 2px;
  border-color: #232f3e;
  background-color:# ;
}

#change:hover{
  border-width: 3px;

}
#loglines:hover{
  border-width: 3px;

}

*:focus {
    outline: none;
}


.dbsel {
    background-color:#fff ;
    border-color:#232f3e;
    border-radius:0;
    padding: 6px 20px;
  }

.back-db {
  float:left;
}



.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
