body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('Digitial_Banking_Banner_En.jpg') no-repeat center center
    fixed;
  background-size: cover;
}

.container {
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.856);
  padding: 20px;
  border-radius: 10px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
}

/* Disabled button style */
button:disabled {
  background-color: grey;
  cursor: not-allowed;
}

.drop-area {
  margin-top: 20px;
  padding: 30px;
  border: 2px dashed white;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}

/* Disabled drop-area style */
.drop-area.disabled {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
}

.drop-area.drag-over {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Loader styles */
.loader {
  text-align: center;
  margin: 20px auto;
  color: white;
}

.spinner {
  border: 8px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 8px solid white;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

.loader p {
  margin-top: 10px;
  font-size: 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
