.quick_icon {
border: 1px solid var(--designbordercolor);
  padding: 10px;
  margin: 10px;
  width: 150px;
  height: 150px;
  text-align: center;
}

.charsheet_desc.quick {
	font-size: 16px;
		}

.quick_block {
padding: 5px;
  border: 1px solid var(--designbordercolor);
  margin: 10px;
	width:360px;
	}

.quick_pos {
font-size: 12px;
  padding: 2px;
  margin: 2px;
  font-family: Wolfpack;
  text-transform: uppercase;
  text-align: left;
  color: rgb(89, 89, 89);
	
}

.quick_pos span {
font-size: 8px;
  font-family: Montserrat;
  margin-left: 5px;
  color: var(--highlight);
  font-weight: 500;
  letter-spacing: 0.14em;
}


.quick_nav {
  padding: 2px;
  margin: 2px;
  text-transform: uppercase;
  text-align: center;	
}

.quick_nav span {
font-size: 8px;
  font-family: Montserrat;
  margin-left: 5px;
  font-weight: 500;
  letter-spacing: 0.14em;
}



/* Profil Quick Info */
.profil_quick_info {
    position: fixed;
    top: 0;
    left: -410px;
    width: 400px;
    height: 100%;
    background: var(--designbgcolor);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.8s ease, opacity 0.8s ease;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    z-index: 10001; /* Höchster Z-Index */
    backdrop-filter: brightness(0.8) blur(5px) grayscale(60%);
}

.profil_quick_info.active {
    left: 0;
}

.profil_quick_info .close_button {
    position: absolute;
    top: 50px; /* Setze den Button 50px von oben */
    right: 10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* Profil Quick Exit */
.profil_quick_exit {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    background: rgb(25, 25, 25);
    background: linear-gradient(265deg, rgba(25, 25, 25, 0.85) 37%, rgba(25, 25, 25, 0.41360294117647056) 81%);
   
    z-index: 10000; /* Unter dem Quick Info, aber über dem Rest */
}

.profil_quick_exit.active {
    display: block;
}

.profile_quick_link {
    text-align: center;
  font-family: Vandals;
  padding: 15px;
  font-size: 20px;
	
}

.hover-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: var(--designbgcolor);
    padding: 10px;
    margin-top: -20px;
    transition: opacity 0.3s;
    white-space: nowrap;
    z-index: 1;
}

.hover-show {
    position: relative;
    cursor: pointer;
}

.hover-show:hover .hover-content {
    visibility: visible;
    opacity: 1;
}

