/* style.css */
#subdomain-link-table input {
    margin-bottom: 10px;
}

#subdomain-link-table .subdomain-row input {
    width: 300px;
}

#subdomain-link-table th {
    width: 150px;
}

button.remove-subdomain-link {
    margin-left: 10px;
}

.contact-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.contact-icons .icon {
    width: 75px;
    height: 75px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    /*animation: glow 1s infinite ease-in-out;*/
    position: relative;
}

.contact-icons .icon:nth-child(1)::after{
    animation-delay: 0s;
}

.contact-icons .icon:nth-child(2)::after{
    animation-delay: 0.5s;
}

.contact-icons .icon:nth-child(3)::after{
     animation-delay: 1s;
}

.contact-icons .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: pulse 2s infinite;
  z-index: 0;
}

.contact-icons .icon > * {
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}


@keyframes glow {
  0% {
    box-shadow: 0 0 0px rgba(0, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 30px 10px rgba(0, 255, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 0px rgba(0, 255, 255, 0.3);
  }
}

.contact-icons .icon:hover {
    animation: shake 0.5s ease-in-out;
    transform: scale(1.1);
}

.contact-info{
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    background-color: #f3f3f32e;
    font-size: 0.98rem;
   border: 1px solid #ececec;
}

.contact-info .icon{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a{
    color: #2258a5 !important;
}

.contact-info .icon img{
    width: 40px;
    height: 40px;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.contact-icons_1{
    display: flex;
    flex-direction: row;
    align-items: start;
}

.contact-icons_1 .icon {
    width: 45px;
    height: 45px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    /*animation: glow 1s infinite ease-in-out;*/
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-icons {
        flex-direction: row;
        bottom: 10px;
        right: 10px;
    }

    .contact-icons .icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .contact-icons {
        /*flex-direction: row;*/
        bottom: 5px;
        right: 5px;
    }

    .contact-icons .icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icons_1 .icon {
        width: 30px;
        height: 30px;
    }
}
