.close-button {
    cursor: pointer;
    font-size: 20px;
}

.loading-center {
    text-align: center;
    padding: 10px;
}

.error-text {
    color: #ff5454;
}

.multi-links-container {
    max-height: 80vh;
    overflow-y: auto;
    width: 100%;
}

.link-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #64ffda;
    border-radius: 10px;
    width: 100%;
    margin-top: 10px;
    height: 50px;
}

.link-container a{
    display: flex;
    color: black;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

.loading-btn {
    background-color: #ccc;
}

.unavailable-btn {
  background-color: #ff5454;
}

.file-name {
    font-weight: bold;
    flex-grow: 1;
    text-align: center;
}

.btn-link {
    border: none;
    background: transparent;
    border-left: 3px white solid;
    text-align: center;
    height: 69%;
    width: 80px;
    cursor: pointer;
    transition: all 0.1s ease-out;
}

.btn-link:hover {
    color: white;
}


.lds-ring {
    /* change color here */
    color: #1c4c5b
  }
  .lds-ring,
  .lds-ring div {
    box-sizing: border-box;
  }
  .lds-ring {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 100%;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 35px;
    height: 35px;
    margin: 6px;
    border: 6px solid #64ffda;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #64ffda transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }