body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #f4f4f4;
}

.upload-container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.file-label, .upload-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
}

.file-label:hover, .upload-button:hover {
    background-color: #0056b3;
}

    .footer {
      background-color: #f2f2f2;
      padding: 20px;
      text-align: center;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }
    .footer-link {
      margin: 0 10px;
      padding: 5px 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      text-decoration: none;
      color: #333;
    }


