html, body {
    background-color: #0F1515;
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    height: 100%;
    overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


header {
    width: 100%;
    height: 70px;
    box-sizing: border-box;
    background-color: #0F1515;
    color: #fff;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2A2F32;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 65px;
    box-sizing: border-box;
    background-color: #0F1515;
    color: #fff;
    display: flex;
    align-items: center;
    border-top: 1px solid #2A2F32;
    text-align: center;
    margin: 0 auto;
}

hr {
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
  position: relative;
  border: none;
  height: 2px;
  background-color: #2A2F32;
  margin-top: 32px;
  margin-bottom: 32px;
}

.logo {
    margin-left: 18px;
    cursor: pointer;
}

.desktop-nav {
    flex: 1;
    display: flex;
    align-items: center;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100vw; /* Startposition außerhalb des Bildschirms */
    width: 50vw;
    height: 100vh;
    background: #171B1C;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 32px 16px;
    border-left: 1px solid #2A2F32;
}

.mobile-nav.open {
    right: 0; /* Menü fährt ein */
}

.close-menu {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    z-index: 2100;
}

.nav-links {
    display: flex;
    gap: 12px;
}

.login-btn {
    margin-left: auto;
}

@media (max-width: 600px) {
  .desktop-nav {
    display: none;
    flex-direction: column !important;
    position: absolute;
    top: 70px;
    right: 0;
    background: #2A2F32;
    width: 200px;
    padding: 16px;
    z-index: 1000;
  }
  .mobile-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block !important;
  }
  .nav-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    width: 100%;
  }
  .container-box {
    max-width: 250px !important;
  }
  h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 16px 0;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
  margin-right: 18px;
}

.button-clear {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #2A2F32;
    font-size: 15px;
    cursor: pointer;
    border-radius: 10px;
}

.button-clear:hover {
    background-color: #171B1C;
}

.button-white {
    background-color: #D9D9D9;
    color: #0F1515;
    border: none;
    font-size: 15px;
    cursor: pointer;
    border-radius: 10px;
}

.button-white:hover {
    background-color: #F0F0F0;
}

.select-clear {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #2A2F32;
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    padding-right: 40px;
}

.container-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px; /* Abstand zwischen den Boxen */
    justify-content: center; /* optional: zentriert die Boxen */
}

.container-box {
    flex: 1 1 250px;
    border: 1px solid #2A2F32;
    border-radius: 10px;
    text-align: left;
    position: relative;
    max-width: 450px;
    height: auto;
    margin: 32px;
    padding-bottom: 32px;
}

.details-button {
    position: absolute;
    right: 12px;
    bottom: 12px;

    background-color: #D9D9D9;
    color: #0F1515;
    border: none;
    font-size: 15px;
    cursor: pointer;
    border-radius: 10px;
}

.logo-container {
    border: 1px solid #2A2F32;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-info {
    margin-left: 32px;
    margin-right: 32px;
    margin-top: 40px;
}

.container-download-button {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 12px;
    cursor: pointer;
}

.maincontent {
  flex: 1;
}