@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.cover-container {
    max-width: 60rem;
}
body {
  background-image: url(../img/5137894.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Roboto", sans-serif;
}
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff 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);
    }
  }
  a {
    text-decoration: none;
    color: inherit;
 
  }
  a:hover {
     color: inherit; 
  }
  .loader {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-in-out;
  }
  .loader.active {
    opacity: 1;
    pointer-events: all;
  }

  .file-item {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
  }
  .file-item p {
    display: flex;
    height: 100%;
    height: 40px;
    align-items: center;
    flex: 1;
    cursor: grab;
  }
  .file-item-client {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    background: white;
    color: black;
    border-radius: 10px;
    padding: 10px;
  }
  p {
    margin: 0;
  }
  .fw-semibold {
    font-weight: 600;
  }
  .main {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
  }

  .bott {
    margin-top: auto;
    padding: 20px;
  }
  .bott ul {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 20px;
    list-style-type: none;
    justify-content: center;
  }
  .bott ul a {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .bott ul a svg {
    width: 25px;
    height: 25px;
  }