/* ====================== Google Fonts ======================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* =================== Basic CSS Reset ======================= */
@-ms-viewport {
  width: device-width;
}

/* HTML-Grundstruktur */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  background-color: #ffffff; /* Einheitlich auf Weiß gesetzt */
  overflow: hidden;          /* Verhindert Scrollen (falls gewünscht) */
  height: 100%;             /* optional, falls du 100%-Höhe willst */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s all ease;
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/* ===================== Body-Styling ======================== */
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  /* Hintergrund und Textfarbe einheitlich festlegen:
     - Hintergrund: #ffffff (weiß)
     - Text: #000000 (schwarz) 
     Wenn du weiße Schrift möchtest, setze color wieder auf #ffffff
  */
  background-color: #ffffff; 
  color: #000000;

  margin: 0;
  padding: 0;
  overflow: hidden; /* Verhindert ungewolltes Scrollen */
}

/* ================= Safe-Area für iOS (Gestenleiste) ======== */
/* Nur wirksam, wenn im <head> steht: 
   <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> */
.bottom-nav {
  /* Falls du eine fixe Navigation hast, positioniere sie z. B. so: */
  /* position: fixed;
  bottom: 0;
  left: 0;
  width: 100%; */

  /* Wichtig: Safe-Area-Inset berücksichtigen */
  padding-bottom: env(safe-area-inset-bottom);
}

/* ================= Fokus-Highlight entfernen =============== */
* {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent; /* Entfernt das blaue iOS-Highlight */
}


/*======================== main_wrapper start =======================*/
.main_wrapper {
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  color: #30426c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.header_part {
  width: 100%;
  background-color: #ffffff;
  padding: 8px 15px 0px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
 /* background-image: url(../images/line-border.svg);*/
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto;
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  z-index: 1024;
}


.header_logo img {
    max-width: 54%;
    padding: 10px;
    margin-top: -10px;
    margin-left: 33%;
}

.header_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  gap: 18px;
}

.settings_item img {
  max-width: 26px;
}

.settings_item {
  position: relative;
}

.settings_dropdown {
  width: 150px;
  background: #fff;
  border: 1px solid #677892;
  padding: 2px 10px 12px;
  filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.25));
  border-radius: 4px;
  position: absolute;
  top: 36px;
  right: -8px;
  display: none;
}

.settings_dropdown::after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background: #fff;
  border: 1px solid #677892;
  transform: rotate(45deg);
  position: absolute;
  top: -8px;
  right: 13px;
  border-right: none;
  border-bottom: none;
}

.settings_dropdown ul li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #0f2250;
  border-bottom: 1px solid #305f6c;
  padding: 14px 0;
  display: block;
}

.settings_dropdown ul li:last-child a {
  border-bottom: none;
}

.bell_item img {
  max-width: 20px;
}

.bell_item a {
  display: inline-block;
  position: relative;
}

.bell_item a span {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: #fa4f4f;
  border-radius: 50%;
  position: absolute;
  right: 1px;
  top: 8px;
}

/*===================== footer_part start =======================*/
.footer_part {
  background: #30426c;
  padding: 10px 0px 75px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: -20PX;
  z-index: 1024;
}

.footer_item {
  width: 25%;
  text-align: center;
}

.footer_item img {
  max-width: 100%;
}

.footer_item.active {
  margin-top: -44px;
}

/*================ middle_part start ==================*/
.textonoff {
  z-index: 1;
}

.onbutton {
  z-index: 1;
}
.middle_part_calender {
  padding-top: 14%;
  /*padding-bottom: 125px;*/
}
.middle_partVoltage {
  padding-top: 21%;
  
}
.middle_part {
  padding-top: 67px;
  padding-bottom: 125px;
}

.meter_upper {
  padding: 0px 5px 0px;
}

.meter_uprBox {
  max-width: 377px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fdfdfd;
  border: 2px solid #30426c;
  border-radius: 25px;
}


      .meter_boxRight span {
        width: 26px;
        height: 26px;
        display: block;
        background: #10eb64;
        border-radius: 50%;
        margin: 10px auto 8px;
      }


.meter_boxLeft,
.meter_boxRight {
  width: 50%;
  text-align: center;
  padding: 17px 0px 27px;
}

.meter_boxLeft p {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 13px;
}

.meter_boxLeft p img {
  max-width: 15px;
  margin-right: 4px;
}

.meter_boxLeft h3 {
  font-size: 37px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #30426c;
  margin: 0;
}

.meter_boxLeft h3 img {
  max-width: 20px;
  margin-right: 4px;
}

.meter_boxRight h4 {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #222;
  margin: 0;
}

.meter_boxRight p {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #4a4a4a;
  margin: 0;
}

.meter_boxLeft {
  border-right: 1px dashed #30426c;
}

.meter_main {
  padding: 46px 15px 20px;
  position: relative;
}

.meter_main1 {
  margin-top: -21px;
}

.meter_item {
  position: relative;
}

.meter_item img {
  width: 100%;
}

.meter_cnt {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  position: absolute;
  bottom: 30px;
}

.meter_cnt h4 {
  font-size: 43px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #30426c;
  margin: 0;
  text-align: center;
  z-index: 1;
}

.meter_cnt span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #1d1d1d;
  display: block;
  margin: 15px 0px 8px;
}

.meter_cnt img {
  max-width: 70px;
}

.minus_icon img {
  max-width: 108px;
  position: absolute;
  top: 53%;
  margin-left: -9%;
  border: 10px;
}

.plus_icon img {
  max-width: 54px;
  position: absolute;
  top: 53%;
  margin-left: 80%;
  border: 10px;
}

.minMax_cnt {
  max-width: 62%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
}

.minMax_cnt span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #1d1d1d;
}

.battery_item {
  margin-left: -17%;
  margin-top: -23%;
  position: absolute;
}

.battery_item p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #303030;
  margin-bottom: 4px;
}

.battery_item h4 {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #0e0e0e;
  margin: 0;
  display: flex;
  align-items: center;
}

.battery_item h4 img {
  max-width: 15px;
  margin-right: 3px;
}

.meter_boxRight .online {
  background: linear-gradient(180deg, #15bb1b 0%, #108c14 100%);
  box-shadow:
    0px -1.6px 1.6px 0px #0f8613 inset,
    0px 1.6px 1.6px 0px #16c21c inset;
  filter: drop-shadow(0px -0.2px 9.6px rgba(4, 33, 5, 0.25));
}

/*===================== page-2 start =======================*/
.meter_circle2 {
  width: 266px;
  height: 266px;
  background: radial-gradient(50% 50% at 50% 50%, #fff 94.83%, #999 100%);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  margin-top: 17%;

  position: relative;
}

.meter_circle_back {
  margin-top: -31%;
  margin-left: -26%;
  transform: scaleX(-1);
  position: absolute;
}
.meter_circle {
  width: 266px;
  height: 266px;
  background: radial-gradient(50% 50% at 50% 50%, #fff 94.83%, #999 100%);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  margin-top: 132px;
}
.meter2_logo img {
  max-width: 74px;
  margin-bottom: 3px;
}

.meter_cnt2 {
  bottom: 30px;
}

.battery_item2 {
  position: relative;
  margin-left: 9%;
  margin-top: -76%;
}
/*==================== page-3 start ======================*/
.switch_title {
  padding: 20px 16px 0px;
}

.switch_title h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #30426c;
  margin: 0;
}

.switch_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9dbe1;
  padding: 10px 16px 15px;
}

.switch_item p {
  font-size: 60px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #30426c;
  margin: 0;
}

/* switch button */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(120, 120, 128, 0.16);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 2.6px;
  bottom: 2px;
  background-color: #ffffff;
  box-shadow:
    0px 0px 0px 1px rgba(0, 0, 0, 0.04),
    0px 3px 8px 0px rgba(0, 0, 0, 0.15),
    0px 3px 1px 0px rgba(0, 0, 0, 0.06);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch input:checked + .slider {
  background-color: #002245;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.slider.round {
  border-radius: 50px;
}

.slider.round:before {
  border-radius: 50%;
}

.preheat_area {
  padding: 35px 30px;
}

.preheat_title h3 {
  position: relative;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #30426c;
  text-align: center;
  margin-top: 0%;
  margin-bottom: 18px;
}

.preheat_box {
  background: #30426c;
  padding: 4px 0px 8px;
  border-radius: 15px;
}

.preheat_number {
  background: linear-gradient(180deg, #30426c 0%, #fff 51.18%, #30426c 100%);
  width: 50px;
  height: 190px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.preheat_number::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}

.preheat_number span {
  font-size: 32.836px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #30426c;
  text-align: center;
  display: block;
  margin-bottom: 3px;
}

.repeat_item {
  padding: 45px 0px 146px;
}

.repeat_cnt {
  background: #d9e5ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 17px;
  border-radius: 15px;
  padding-right: 35px;
}

.repeat_cnt h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #0f2250;
  margin: 0;
}

.repeat_cnt p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #272727;
  margin: 0;
}

.target_cnt {
  padding: 0px 17px;
  padding-right: 35px;
  margin-top: 8px;
}

.target_counter {
  background: linear-gradient(180deg, #d9e5ff 0%, #fff 50%, #30426c 100%);
  width: 50px;
  height: 45px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.target_counter::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}

.target_counter span {
  font-size: 32.836px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #30426c;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saved_values {
  margin-top: -90px;
}

.save_btn {
  text-align: center;
  margin-top: -100px;
}

.save_btn a {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  text-align: center;
  background: #30426c;
  display: inline-block;
  padding: 8px 40px;
  border-radius: 7px;
  transition: 0.2s all ease;
}

.save_btn a:hover {
  opacity: 0.9;
}

/*================== page-4 start =====================*/


.header_border2 {
  background-image: none;
}

.timer_explanation {
  text-align: center;
  font-size: 0em;
  color: #555; /* Dunkelgraue Farbe für bessere Lesbarkeit */
  margin-bottom: 10px; /* Abstand unter dem Text */
}

.timer_heading {
  padding: 0px 22px;
  margin-top: -10%;
}

.timer_heading img {
  width: 100%;
  margin-top: -24%;
}

.timer_part {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  margin-top: 5%;
}

.timer_number {
  align-items: center;
}

.timer_counter {
  width: 82px;
  height: 185px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.timer_counter::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}

.timer_counter span {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #30426c;
  text-align: center;
  margin: 2px 0;
  display: block;
}

.timer_cnt p {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #30426c;
  text-align: center;
  margin: 0;
}

.timer_counter span.marked {
  background-color: #38526d;
  color: #fff;
  border-radius: 4px;
}

/*.timer_number .prev_shadow {
    background: linear-gradient(180deg, rgba(249, 249, 249, 0.29) 0%, #666 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timer_number .next_shadow {
    background: linear-gradient(180deg, #666 0%, rgba(255, 255, 255, 0.00) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}*/

.timer_area {
  padding-top: 9%;
}

.play_btn {
  margin-top: 80px;
  text-align: center;
}

.play_btn img {
  max-width: 134px;
}

.under_volPart {
  padding: 70px 16px 20px;
  text-align: center;
}

.under_volPart h4 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #30426c;
  text-align: center;
  margin-bottom: 20px;
}

.voltage_number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.voltage_counter {
  width: 112px;
  text-align: center;
}

.voltage_counter span {
  font-size: 32.836px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #30426c;
  display: block;
  margin: 20px 0;
  text-align: center;
}

.voltage_cnt p {
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #30426c;
}

/*.voltage_cnt .prev_volt {
    background: linear-gradient(180deg, rgba(249, 249, 249, 0.29) 0%, #666 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.voltage_cnt .next_volt {
    background: linear-gradient(180deg, #666 0%, rgba(255, 255, 255, 0.00) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.save_btn2 {
  margin-top: 20px;
}

.voltage_btmcnt {
  padding: 12px 0;
  /*border-bottom: 1px solid rgba(60, 60, 67, 0.3);*/
  text-align: left;
  margin-top: 24px;
}

.voltage_btmcnt p {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 129.412%;
  letter-spacing: -0.43px;
  color: rgba(60, 60, 67, 0.3);
  text-align: left;
}

.info_part {
  padding: 50px 25px;
}

.info_part h4 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #30426c;
  margin-bottom: 2px;
}

.info_part a {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  color: #004cff;
}

.save_btn3 {
  margin-top: 150px;
}

/* update */
.switch_itemFirst {
}

.switch_item {
  display: block;
  margin-bottom: 10px;
  padding: 0rem 20px;
  border: none;
}

.switch_item a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, #f1f1f1, #f0f0f0, #f1f1f1);
  padding: 14px 10px 14px 14px;
  border-radius: 24px;
}

.switch_left {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
}
h6#savedTimeTempMO,
h6#savedTimeTempTU,
h6#savedTimeTempWE,
h6#savedTimeTempTH,
h6#savedTimeTempFR,
h6#savedTimeTempSA,
h6#savedTimeTempSU {
  margin-top: 25px;
  margin-left: 49px;
  color: #9d9d9d;
  position: absolute;
}

.switch_left img {
  max-width: 38px;
}

.switch_left p {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 133.333%;
  letter-spacing: -0.23px;
  color: #000;
  margin: 0;
  margin-top: -4px;
}

.switch_right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrow_right img {
  max-width: 8px;
}

.preheat_box {
  background: #30426c;
  padding: 4px 0px 8px;
  border-radius: 15px;
  position: relative; /* Position für das Overlay */
  overflow: hidden; /* Verhindert, dass der Inhalt außerhalb der Box sichtbar ist */
}

.prehet_time_counter {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 65px;
}

.select_time p {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.3px;
  position: absolute;
  top: 9px;
  left: 16px;
}

.time_cnt p {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.3px;
  margin: 0;
  margin-top: 10px;
  text-align: center;
}

/*================== page-5 start =====================*/
.timer_part1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
/*================== uuireg start =====================*/

/*================== uuireg start =====================*/
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.logo {
    width: 200px; /* Größe des Logos */
    transition: transform 1s ease; /* Sanfter Übergang */
}

.rotate-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #d43f3a;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.rotate-button:hover {
    background-color: #b83835;
}

/* Verbesserte Styling für das Eingabefeld und den Button */
.serial_input {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* Abstand zwischen Input und Button */
  margin-top: 90px;
}

.serial_input p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  margin-top: -34px;
}

.serial_input input {
  width: 300px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.serial_input input:focus {
  border-color: #d43f3a;
  box-shadow: 0 2px 6px rgba(212, 63, 58, 0.3);
  outline: none;
}

.serial_input button {
  width: 300px;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  background-color: #30426c;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.serial_input button:hover {
    background-color: #3f5591;
    transform: translateY(-2px);
}

.serial_input button:active {
    background-color: #26365a;
    transform: translateY(0);
}


/* AGB */



.terms-container {
    margin: 10% auto;
    width: 80%;
    max-width: 500px;
    flex-grow: 1;
    text-align: left;
  z-index: 1;
    position: relative;
    padding-top: 13%px;
}

.terms-container h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.terms-scroll {
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 200px; /* Festgelegte Höhe für den AGB-Bereich */
    overflow-y: scroll; /* Vertikales Scrollen aktivieren */
    background-color: #fff;
    padding: 10px;
    color: #555;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checkbox-container {
    margin-top: 10px;
    text-align: left;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-container label {
    font-size: 12px;
    color: #333;
}

/* Serial Number Eingabefeld und Button */
.serial-input-container {
    text-align: center;
    margin-top: 20px;
}

.serial-input-container label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.serial-input-container input,
.serial-input-container button {
    width: 300px;
    padding: 10px;
    margin: 10px 0;
    font-size: 16px;
}

.serial-input-container button {
    background-color: #d43f3a;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.serial-input-container button:hover {
    background-color: #b83835;
}
.header_logouiig {
    max-width: 65%;
    padding: 10px;
    margin-top: 14px;
    margin-left: 18%;
 

}
/* Dynamische Höhe */
:root {
    --vh: 100vh; /* Standardhöhe */
}

#logo {
    transition: transform 1s ease; /* Sanfte Übergänge aktivieren */
}
.middle_part1 {
    padding-top: 22%;
    padding-bottom: 0px;
}

.message-area {
    margin-top: 20px;
    font-size: 16px;
}

.success {
    color: green;
}

.error {
    color: red;
}

.purchase-button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.purchase-button:hover {
    background-color: #0056b3;
}
