* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  background-color: #282535;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.container {
  width: 100%;
  max-width: 28rem;
}

.upload-card {
  background-color: #e3e3e3;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.card-header {
  padding: 1rem;
  border-bottom: 1px solid #bfbfbf;
}

.card-header h1 {
  color: #333;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.card-body {
  padding: 1.5rem;
}

.drop-area {
  border: 2px dashed #d1d5db;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.drop-area.drag-active {
  border-color: #3b82f6;
  background-color: #eff6ff;
}

.drop-area.success {
  border-color: #10b981;
  background-color: #ecfdf5;
}

.drop-area.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.icon {
  margin-bottom: 0.5rem;
}

.upload-icon {
  color: #7949c2;
}

.success-icon {
  color: #10b981;
}

.error-icon {
  color: #ef4444;
}

.file-name {
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.25rem;
}

.upload-text {
  font-size: 0.875rem;
  color: #6b7280;
}

.file-types {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.upload-button {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #7949c2;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.upload-button:hover:not(:disabled) {
  background-color: #421f75;
}

.upload-button:disabled {
  background-color: #d1d5db;
  cursor: not-allowed;
}

.button-icon {
  display: flex;
  align-items: center;
}

.spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}

.logo {
  width: 350px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 100px;
}

.container {
  display: flex;
  align-items: center;
  flex-direction: column;
}