

header {
  
    height: 70px; /* Höhe des headers */
   
}

.trophaen-box {
    width: calc(100% - 20px);
    height: 55px;
    margin: 2px auto 0;
    padding: 0 10px;
    border: 3px solid rgb(255, 140, 0);
   /* background-color: rgba(255, 255, 230, 0.5);  */
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(200, 150, 0, 0.4);
    display: flex;
    align-items: center;
    z-index: 5;
}

.trophaen-box .trophaen {
    
    margin-left: 5px;
   
    white-space: nowrap;
    z-index: 5;
}

.trophaen-box .seitentitel, .rang-box .seitentitel {
    font-size: 1.3em;
}

.trophaen-img {
    margin-left: 30px;
    display: flex;
    gap: 5px;
    align-items: center;
    
}

.trophaen-img img {
    width: 35px;
    height: 45px;
    filter: grayscale(100%) brightness(40%);
    opacity: 0.6;
    transition: all 0.3s ease-in-out; 
}

.trophaen-img img.erhalten {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
    cursor: pointer;
}

.trophaen-img img:hover {
    transform: scale(1.2);
}

.rang-box {
    width: calc(100% - 20px);
    min-height: 50px;
    height: auto; /* oder: einfach die height-Zeile entfernen */
    margin: 2px auto 0;
    padding: 0 10px;
    border: 3px solid rgb(255, 140, 0);
   /* background-color: rgb(255, 255, 230);  */
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(200, 150, 0, 0.4);
    display: flex;
    align-items: center;
    z-index: 5;
}

.rang-box .rang {
    
    margin-left: 5px;
  /*  margin-right: 200px;  */
    white-space: nowrap;
}

.rang-img {
    margin-left: 70px;
    display: flex;
    gap: 20px;
    align-items: flex-start; /* wichtig für vertikale Ausrichtung */
    
}

.rang-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8em;
    color: rgb(80, 50, 0);
}

.rang-item p {
  /*  margin: 0;  */
    font-weight: bold;
}

.rang-img img {
    width: 45px;
    height: 45px;
    /*
    filter: grayscale(100%) brightness(40%);
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
    */
}

.rang-img img.erhalten {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
    cursor: pointer;
}

.rang-img img:hover {
    transform: scale(1.2);
}

.alle-ansehen-link {
    margin-left: auto;
  /*  margin-right: 5px;  */
    padding-top: 5px;
    display: flex;
    gap: 5px;
    align-items: center;
    text-decoration: none;
    color: white;
    background-color: rgb(255, 140, 0);
    padding: 5px 10px;
    border: 2px solid rgb(200, 100, 0);
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .alle-ansehen-link:hover {
    background-color: rgb(200, 100, 0);
    color: white;
  }

  .area {
    position: relative;
    padding: 20px 170px 20px 20px; /* oben, rechts (Platz für Box!), unten, links */
  }

    .creator-box {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 30%;
        height: 87%;
      /*  background-color: rgb(255, 250, 235); */
        border: 2px solid rgb(200, 100, 0);
        border-radius: 10px;
        box-shadow: 0 0 6px rgba(200, 100, 0, 0.3);
        padding: 10px;
        text-align: center;
        z-index: 10;
        overflow: hidden;
    }

    .creator-box h2 {
        font-size: 0.95em;
        margin: 0;
        color: rgb(120, 60, 0);
        word-wrap: break-word;
    }

    .creator-box p {
        margin: 5px 0 10px;
        font-size: 0.85em;
        color: rgb(100, 50, 0);
    }

    .creator-box img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 95%;
    }

    .creator-box a.creator img:hover {
        transform: scale(1.05);
        transition: transform 0.2s ease-in-out;
        cursor: pointer;
    }

