/************************************************/
/********** ubuntu-mono-regular - latin *********/
/************************************************/
@font-face {
   font-family: 'Ubuntu Mono';
   font-style: normal;
   font-weight: 400;
   src: url('./fonts/ubuntu-mono-v10-latin-regular.eot'); /* IE9 Compat Modes */
   src: local(''),
      url('./fonts/ubuntu-mono-v10-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
      url('./fonts/ubuntu-mono-v10-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
      url('./fonts/ubuntu-mono-v10-latin-regular.woff') format('woff'), /* Modern Browsers */
      url('./fonts/ubuntu-mono-v10-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
      url('./fonts/ubuntu-mono-v10-latin-regular.svg#UbuntuMono') format('svg'); /* Legacy iOS */
}

/* General Styles */
body {
  font-family: Ubuntu Mono;
  line-height: 1.1;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Navigation Styles */
.main-nav {
  background-color: #9CC0ED;
  color: white;
  padding: 10px 0;
  margin-bottom: 20px;
}

.nav-container {
  max-width: 1800px;
  margin: 0 auto;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-brand {
  font-size: 1.5em;
  font-weight: 400;
}
.nav-brand a {
  color: white;
  text-decoration: none;
}
.nav-brand a:hover {
  color: #e6e6e6;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu ul li {
  margin-left: 15px;
}
.nav-menu ul li a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 5px;
  transition: all ease-in-out 0.3s;
}
.nav-menu ul li a:hover {
  background-color: #9CC0ED;
}

.container.login-container {
  max-width: 400px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.container.admin {
  max-width: 1800px !important;
}

h1, h2 {
  text-align: center;
  margin-bottom: 20px;
}

.uppercase {
  text-transform: uppercase;
}

/* Form Styles */
.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type=text], input[type=email], input[type=password] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

.password-requirements {
  display: block;
  color: #666;
  font-size: 0.85em;
  margin-top: 5px;
  font-style: italic;
}

.btn {
  display: inline-block;
  background: #9CC0ED;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  margin-right: 10px;
  transition: all ease-in-out 0.3s;
}
.btn:hover {
  background: #9CC0ED;
}
.btn-danger {
  background: #dc3545;
}
.btn-danger:hover {
  background: #c82333;
}
.btn-secondary {
  background: #6c757d;
}
.btn-secondary:hover {
  background: #5a6268;
}
.btn-sm {
  padding: 5px 10px;
  font-size: 0.9em;
}

/* Message Styles */
.error {
  color: red;
  margin-bottom: 10px;
}

.success {
  color: green;
  margin-bottom: 10px;
}

/* Tab Styles */
.tabs {
  display: flex;
  margin-bottom: 20px;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: #eee;
  cursor: pointer;
}
.tab.active {
  background: #9CC0ED;
  color: white;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Landing Page Styles */
.landing-intro, .landing-actions, .landing-features {
  margin-bottom: 40px;
}

.landing-intro ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

.feature {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
}
.feature h3 {
  margin-bottom: 5px;
}

/* User Info Styles */
.user-info {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* Profile Photo Styles */
/* Custom File Input Styles */
.profile-photo-container {
  text-align: center;
  margin-bottom: 15px;
}

.profile-photo-display {
  text-align: center;
  margin-bottom: 15px;
}

.profile-photo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.profile-photo-preview {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.custom-file-input {
  position: relative;
  display: inline-block;
  width: 100%;
}
.custom-file-input label {
  margin-bottom: 0;
}
.custom-file-input input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.custom-file-input input[type=file]:focus + .custom-file-label {
  border-color: #9CC0ED;
  box-shadow: 0 0 0 0.2rem rgba(26, 102, 193, 0.25);
}
.custom-file-input:hover .custom-file-label {
  border-color: #c4c4c4;
}

.custom-file-label {
  display: block;
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: white;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.custom-file-label::after {
  color: black;
  content: "Browse";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px 10px;
  background-color: #9CC0ED;
  color: white;
  border-radius: 0 5px 5px 0;
  border-left: 1px solid #ddd;
  font-size: 0.9em;
  height: calc(100% - 8px);
  display: flex;
  align-items: center;
}

/* Profile Form Styles */
.profile-form {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.profile-form .form-actions {
  margin-top: 20px;
}

/* Admin Panel Styles */
.navigation {
  margin-bottom: 20px;
}

.action-buttons {
  margin-bottom: 20px;
}

.user-form {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}
.user-form h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
table, table th, table td {
  border: 1px solid #ddd;
}
table th, table td {
  padding: 12px;
  text-align: left;
}
table th {
  background-color: #f2f2f2;
  font-weight: bold;
}
table tr:nth-child(even) {
  background-color: #f9f9f9;
}
table tr:hover {
  background-color: #f1f1f1;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer-nav {
  background-color: white;
  color: black;
  padding: 10px 0;
}
.footer-nav p {
  margin: 0;
}

.footer-brand {
  font-size: 1.5em;
  font-weight: 300;
}
.footer-brand a {
  color: black;
  text-decoration: none;
}
.footer-brand a:hover {
  color: #e6e6e6;
}

#passwordStrength {
  font-weight: bold;
  margin-top: 5px;
}

#passwordStrength_edit {
  font-weight: bold;
  margin-top: 5px;
}

.password-input-container {
  position: relative;
  display: inline-block;
  width: 100%;
  /* or whatever width you want */
}

.password-input-container input {
  width: 100%;
  padding-right: 40px;
  /* Make room for the icon */
  box-sizing: border-box;
}

.password-toggle-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
}

.blue {
  color: #9CC0ED;
}

/*# sourceMappingURL=styles.css.map */

/**********************************/
/********** Scroll go top *********/
/**********************************/

#myBtn {
   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: #FFFFFF;           /* Set a background color */
   color: white;                        /* Text color */
   cursor: pointer;                     /* Add a mouse pointer on hover */
   padding: 15px;                       /* Some padding */
   border-radius: 10px;                 /* Rounded corners */
   font-size: 18px;                     /* Increase font size */
}

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

/********************************/
/********** Bilder-Zoom *********/
/********************************/

.zoom-bild {
   max-width: 100%;
   transition: all 0.3s linear;
}
.zoom-bild:hover {
   transform: scale(2.5);
}

.zoom-bild-v {
   max-width: 100%;
   transition: all 0.3s linear;
}
.zoom-bild-v:hover {
   transform: scale(1.5);
}

/******************************/
/********** Warnungen *********/
/******************************/

#ie8-warnung {
   font-family: 'Ubuntu Mono';
   font-size: 100%;
   font-weight: bold;
   position: fixed;
   text-align: center;
   color: #fff;
   background-color: #adad00;
   z-index: 100;
   width: 100%;
   top: 0;
   left: 0;
   padding: 5px 0;
}
