#upload_container {
    background-color: seashell;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 97vh;
}

#upload {
    padding: 1%;
    border-style: groove;
    background: #EFEFEF;
    width: 50%;
    text-align: center;
    border: 2px dashed #000205;
    transition: background 0.3s ease;
}

#upload:hover {
    background-color: #f0f8ff;
}

input[type="file"] {
    margin-bottom: 10px;
}

.loader {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
  }
  .loader::after,
  .loader::before {
    content: '';
    width: 48px;
    height: 48px;
    border: 2px solid #000000;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    animation: rotation 2s ease-in-out infinite;
  }
  .loader::after {
    border-color: #FF3D00;
    animation-delay: 1s;
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }   

.container {
    display: flex;
    gap: 40px;
}

.tile {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tile-img {
    width: 100%;
    height: 180px;
    background-color: #cce5ff;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #007bff;
    font-size: 18px;
}

.tile-text {
    margin: 15px 0;
    font-size: 16px;
    color: #333;
}

.download-btn {
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.download-btn:hover {
    background-color: #0056b3;
}