body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #FFFFFF;
}

header {
  background: #488FCC;
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.sidebar {
  width: 200px;
  padding: 42px 10px 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100vh;
  background-color: #fff;
  box-shadow: none;
  position: fixed;
}

.profile {
  margin-bottom: 18px;
  width: 100%;
  text-align: left;
  padding-left: 4px;
}

.profile img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.container {
  max-width: 800px;
  margin: 1rem auto;
  background: #488FCC;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
}

.profile-container {
  max-width: 800px;
  margin: 1rem auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  background-image: url('img/minecraftbanner.png');
  background-repeat: no-repeat;
  background-position: center;
  background-position: top;
  background-size: 100%;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #40739e;
  margin-bottom: 1rem;
}

.username {
  font-size: 1.8rem;
  font-weight: bold;
}

.bio {
  margin: 1rem 0;
  font-size: 1rem;
  color: #718093;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  background: #00b0f0;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #0088f7;
}

nav {
  margin-top: 2rem;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #dcdde1;
  padding-top: 1rem;
  color: #4d4d4d;
}

nav a {
  text-decoration: none;
  color: #4d4d4d;
  font-weight: bold;
}

nav a.active {
  color: #008cff;
  text-decoration: underline;
}

.logo {
  width: 100px;
  height: 100px;
  text-align: center;
}

.container-Verified {
  text-align: center;
  display: flex;
  align-items: center;
  max-width: 380px;
  margin: 0.5rem auto;
  height: 80px;
}

.container-Verified img {
  max-width: auto;
  height: 35px;
  width: 35px;
  margin: 1rem auto;
}

.container-Verified h2 {
  margin: 1rem auto;
  font-size: 2em;
  Color: #333;
}

.Verified {
  width: 50px;
  height: 50px;
}

.bio2 {
  text-align: center;
  display: flex;
  align-items: center;
  max-width: 210px;
  margin: auto;
}

.sidenav {
  height: 5%;
  width: 50px;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  background-color: #ffffff00;
  overflow-x: hidden;
  margin-top: 25px;
}

.menu {
  margin-top: 15px;
  margin-left: 10px;
  border-radius: 25px;
}

div.gallery {
  margin-top: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

div.gallery:hover {
  border: 1px solid #dad9d9;
}

div.gallery img {
  width: 100%;
  height: 170px;
  border-radius: 15px;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

footer {
  max-width: 800px;
  margin: 1rem auto;
  background: #488FCC;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.9em;
  height: 8vh;
}

.impressum-leiste {
  background: none;
  color: white;
  padding: 0;
  text-align: center;
  font-size: 1em;
  border-radius: 0;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  display: block;
}

.impressum-leiste p {
  color: black;
}

.impressum-leiste a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.impressum-leiste a:hover {
  text-decoration: underline;
}

.nav-link,
.dropbtn {
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  gap: 10px; 
  width: 100%;
  padding: 10px;
  border: none;
  background: none;
  font-size: 16px;
  color: #555;
  text-decoration: none;
  cursor: pointer;
}

.nav-link:hover,
.dropbtn:hover {
  background-color: #f0f0f0;
}

.nav-link img,
.dropbtn img {
  width: 26px; 
  height: 26px; 
  margin-right: 0;
}


.dropdown {
  position: relative;
  width: 100%;
}

.dropdown-content {
  display: none;
  flex-direction: column;
  background-color: white;
  min-width: 160px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding-left: 40px;
}

.dropdown-content a {
  padding: 10px;
  color: #333;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.show {
  display: flex;
}