  /* ... Font Families ... */
  @import url('https://fonts.googleapis.com/css?family=Open+Sans');
  @import url('https://fonts.googleapis.com/css?family=Dosis');
  
  .open-sans {
    font-family: 'Open Sans', sans-serif;
  }
  
  .dosis {
    font-family: 'Dosis', sans-serif;
  }

/* ... Color Variables ... */
:root {
    --color-black: #0F0F0F;
    --color-white: #FFFFFF;
    --color-accent: #B79158;
  }
  
  a{
    text-decoration:none;
  }
  
  /* ... Text Sizes ... */
  .text-h12 {
    font-size: 12px;
  }
  
  .text-h18 {
    font-size: 18px;
  }
  
  .text-h36 {
    font-size: 36px;
  }
  
  .content{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .footer {
    
    padding: 24px 0;
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 36px;

    width:100%;
  }
  
  .footer-title-container{
    background: var(--color-black);
    border-radius:5px;
    padding: 0 12px 0 12px;
  }
  .footer-title {
    color: var(--White, #fff);
    text-align: center;
    /* H36 */
    font-family: Dosis;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }

  .footer-copyright {
    text-align: right;
    /* H12 */
    font-family: Open Sans;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 166.667% */
    color: var(--color-white)!important;
  }

  /* ... Bold Text ... */
  .bold {
    font-weight: bold;
  }

.main-body {
    /*background-image: radial-gradient(100.00% 69.85% at 100% 34.92%, rgba(255, 255, 255, 0) 0%, rgba(53, 25, 0, 0) 0%, rgba(53, 25, 0, 0.10) 64%, rgba(53.07, 25.30, 0, 0.22) 82%, rgba(53.12, 25.50, 0, 0.28) 86%, rgba(53.12, 25.50, 0, 0.30) 100%),
    url('/img/theme-1.jpg');*/
    background-color:var(--color-black);
    background-size: cover;
    background-position: center;
    width: 100%; /* Adjusted for responsiveness */
    min-height: 100vh; /* Use min-height for better handling on mobile */
    overflow-x: hidden; /* Hide horizontal overflow */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main-body::-webkit-scrollbar {
    width: 4px;
    margin-left:10px;
}

.main-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0);
    border-radius: 12px;
}

.main-body::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

.main-body {
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) rgba(255, 255, 255, 0);
}

  .main-header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px;
    
  }


  .show {
    display: block; /* Show the dropdown */
  }

  .qr{
    width:300px;
    height:300px;
    background-image: url('/img/qr_altstetten.png');
    background-size:300px;
    margin-bottom: 36px;

  }

  .back-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none; /* Removes underline from links */
    color: inherit; /* Ensures that the text color is consistent with the rest of the design */
    /* Add other styles such as padding, background, etc., as needed */
}

.back-btn .small-icon {
    /* Styling for the icon */
    margin-right: 18px; /* Adjust space between icon and text */
    /* Add specific styles for your icon here */
}

.back-btn p {
    margin: 0; /* Removes default paragraph margins */
    color: var(--color-white);
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 18px;
}
  .brand {
    width: 200px;
    height: 200px;
   
    background-image: url('/img/logo.png');
    background-size: 200px;
    border-radius: 200px;
    display: flex;
    
    justify-content: center;
    align-items: center;
  }
  .main-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 18px;
    height:72px;
    border-radius: 36px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    align-items:center;
    min-width: 230px;
    max-width: 230px;
  }

  .main-btn:active {
    background-color: var(--color-white);
    color: var(--color-black);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  }

  .small-icon {
    width:24px;
    height:24px;
    margin-right:24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .big-icon {
    width:48px;
    height:48px;
    background-size: 48px 48px;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  /* ... btn icons ... */

  .icon-key {
    background-image: url('/img/key_icon.png');
  }
  .main-btn:active .icon-key {
    background-image: url('/img/key_icon_black.png');
  }

  .icon-save {
    background-image: url('/img/save_icon.png');
  }
  .main-btn:active .icon-save {
    background-image: url('/img/save_icon_black.png');
  }

  .icon-photo {
    background-image: url('/img/photo_icon.png');
  }
  .icon-photo-transparent {
    background-image: url('/img/photo_icon.png');
    opacity: 0.6;
    display:block;
    margin-right:0;
  }
  .main-btn:active .icon-photo {
    background-image: url('/img/photo_icon_black.png');
  }

  .icon-csv {
    background-image: url('/img/csv_icon.png');
  }

  .icon-picture {
    background-image: url('/img/picture_icon.png');
  }
  .main-btn:active .icon-csv {
    background-image: url('/img/csv_icon_black.png');
  }
  
  .icon-photo-filter {
    background-image: url('/img/photo_filter_icon.png');
    width:24px;
    height:24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .icon-tattoo-filter {
    background-image: url('/img/tattoo_filter_icon.png');
    width:24px;
    height:24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .icon-piercing-filter {
    background-image: url('/img/piercing_filter_icon.png');
    width:24px;
    height:24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .icon-body-filter {
    background-image: url('/img/body_filter_icon.png');
    width:24px;
    height:24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
  }

  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
  }
 
  
  input[type=number]{
      -moz-appearance: textfield;
  }
  /* ... normal icons ... */

  .icon-pw {
    background-image: url('/img/pw_icon.png');
  }

  .icon-delete {
    background-image: url('/img/delete_icon.png');
  }

  .icon-delete-filter {
    background-image: url('/img/delete_filter_icon.png');
  }

  .icon-bday {
    background-image: url('/img/bday_icon.png');
    margin-right: 18px!important;
  }

  .icon-date {
    background-image: url('/img/date_icon.png');
    margin-right: 18px!important;
  }

  .icon-personal {
    background-image: url('/img/personalien_icon.png');
    margin-right: 18px!important;
  }

  .icon-id {
    background-image: url('/img/id_icon.png');
    margin-right: 18px!important;
  }
  .icon-id-filter{
    background-image: url('/img/picture_icon.png');
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
}
  .icon-questions {
    background-image: url('/img/questions_icon.png');
    margin-right: 18px!important;
  }

  .icon-qr {
    background-image: url('/img/qr_icon.png');
  }

  .icon-search {
    background-image: url('/img/search_icon.png');
  }

  .icon-sign {
    background-image: url('/img/sign_icon.png');
    margin-right: 18px!important;
  }

  .icon-wifi {
    background-image: url('/img/wifi_icon.png');
  }

/* ... big icons ... */

  .icon-login {
    background-image: url('/img/login_icon.png');
  }

  .icon-user {
    background-image: url('/img/user_icon.png');
  }

/* ... arrow icons ... */



.small-icon.icon-arrow-up-filter {
  background-image: url('/img/arrow_up_filter_icon.png');
}

.small-icon.icon-arrow-calendar-down {
  background-image: url('/img/calendar_down_icon.png');
}

.small-icon.icon-arrow-calendar-up {
  background-image: url('/img/calendar_up_icon.png');
}

.dev-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  background-color: var(--color-white);
  color: var(--color-black);
}

.dev-form label {
  margin-bottom: 8px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  color: var(--color-black);
}

.dev-form input[type="text"],
.dev-form input[type="password"],
.dev-form select {
  width: 100%;

  border: 1px solid var(--color-accent);

  box-sizing: border-box;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: var(--color-black);
  background-color: var(--color-white);
}
.dev-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  background-color: var(--color-white);
  color: var(--color-black);
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group label {
  margin-bottom: 8px;

  font-family: 'Open Sans', sans-serif;
}

.form-group input[type="password"],
.form-group select {

  border: 1px solid var(--color-accent);

  font-family: 'Open Sans', sans-serif;
}

.radio-group {
  display: flex;
  gap: 10px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dev-form button {
  padding: 12px 20px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: 'Dosis', sans-serif;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.dev-form button:hover {
  background-color: darken(var(--color-accent), 10%);
}

.form-group-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.form-group {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;

}

.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"] {

  border: 1.5px solid var(--color-white);

}



.overlay.active {
  display: block;
}

/* Optional: Style to prevent scrolling when overlay is active */
body.noscroll {
  overflow: hidden;
}

.overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dimmed background */
  z-index: 1001; /* Above other content */
}


/* When active, make the overlay visible */
.overlay.active {
  display: block;
}

.qr-form-container, #qrForm{
  display:flex;
  flex-direction: column;
  height:100%;
  justify-content: center;
  align-items: center;
}

.qrcodedev{
  width:400px;
  height:auto;
  padding:50px;
}
  @media screen and (max-width: 1080px) { 
    
    .brand{
        width: 72px;
        height: 72px;
        background-size: 72px;
    }
    
}
  

  @media screen and (max-width: 480px) { 
    .form-step {
        width: 85%;
    }
    .sub-form-group {
        width:100%;
    }
    .form-group input{
        max-width:none;
    }
  .qr{
    width:200px;
    height:200px;
    background-size:200px;
   

  }
    
    .form-group-row{
        width:100%;
    }
    .yes-no-buttons label{
        flex-basis: 49%;
    }
    .message-text{
        margin-left:0;
        font-size: 12px;
    }
    .main-body{
        margin:0;
    }
}