#skill-section {
 
    width: 100vw;
   
}

.skill-container {
    width: 85%;
    height: 110px;
    background-color: transparent;
    border-radius: 35px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: solid 1px var(--accent-color);
    box-shadow: var(--accent-color) 0px 20px 20px -10px;
    margin-bottom: 25px;
    z-index: 5;
    backdrop-filter: blur(100px); /* Macht alles dahinter unscharf */
    
}

.skill-child {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}



.skill-container-img-container {
    padding: 10px;
    
    border-radius: 50%;
    position: relative;
    top: -120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
   
}

.skill-container-download-container{
    position: relative; /* Ermöglicht die manuelle Positionierung */
  bottom: 30%; /* Positioniert es am oberen Rand */
  left: 45%; /* Positioniert es am rechten Rand */
    border-radius: 5px;
    width: 35px;
    height: 35px;
    background-color: var(--accent-color);
    padding: 20px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: solid 1px #ffffff4d;
     overflow: hidden;   /* Damit der Effekt nicht über das Element hinausgeht */
}




.skill-container-download-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    animation: shine 2s ease-in-out infinite;
    pointer-events: none;
    border-radius: 25px;
}

/* Shine Animation */
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}



.skill-container-download-container:hover{
    background-color: transparent;
      border-color: var(--accent-color);
}

#fullstackDiv {
width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.download-img {
    width: 35px;
    height: 35px;
}



.skill-img {

    width: 65px;
    height: 65px;
   
}



.skill-container-p {
    text-wrap: nowrap;
    color: #f0eff2;
    position: relative;
    top: 70px;
    left: 0px;
    font-size: clamp(1.6rem, 1.0vw, 0.5rem);
  
    padding: 10px;
    border-radius: 10px;
    
}

#skillMainDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20vh;
}

#frontBackkDiv{
    display: flex;
    flex-direction: row;
    margin-top: -150px;
    width: 100%;
    align-items: flex-start;
}

#frontendDiv {
    width: 50%;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#backendDiv {
    width: 50%;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.SepcialConnectorLines{
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    transform: translate(0, -50%);
    z-index: 0;
    margin-bottom: 75px;
}

.connectorLines1{
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    top: -25px;
    z-index: 0;

}

.left{
    width: 100%;
   display: flex;
   justify-content: center;
    z-index: 0;
    flex-direction: column-reverse;
    align-items: center;
}

.right{
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 0;
    flex-direction: column-reverse;
    align-items: center;
}

.leftBottom{
    width: 0px;
    height: 150px;
 
    border: solid 1px var(--accent-color);
    position: relative;
 
}
.leftTop{
    width: 37px;
    height: 0px;

    border: solid 1px var(--accent-color);
    position: relative;
    left: 17.5px;
 
}

.rightBottom{
    width: 0px;
    height: 150px;

    border: solid 1px var(--accent-color);
    
    position: relative;
  

}
.rightTop{
    width: 38px;
    height: 0px;

    border: solid 1px var(--accent-color);
    right: 17.5px;
    position: relative;
  
}

.leftBottom2{
    width: 0px;
    height: 75px;

    border: solid 1px var(--accent-color);
   
}

.rightBottom2 {
    width: 0px;
    height: 80px;

    border: solid 1px var(--accent-color);
 
   

}


.tooltip-link {
    position: relative;
    text-decoration: none;
    color: var(--accent-color);
  }

  /* Tooltip Styling */
  .tooltip-link .tooltip {
    visibility: hidden;
    background-color: var(--accent-color);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the link */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap; /* Prevents text wrapping */
  }

  /* Tooltip Arrow */
  .tooltip-link .tooltip::after {
    content: "";
    position: absolute;
    top: 100%; /* Arrow on the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--accent-color) transparent transparent transparent;
  }

  /* Show Tooltip on Hover */
  .tooltip-link:hover .tooltip {
    visibility: visible;
    opacity: 1;
  }
