.pdfmagics-box {
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(to right, #f0f9ff, #e0f7fa);
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.2);
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  color: #333;
}

.pdfmagics-box h2 {
  color: #007bff;
  font-size: 28px;
  margin-bottom: 20px;
}

.pdfmagics-box input[type="file"] {
  padding: 12px;
  background-color: #fff;
  border: 2px dashed #007bff;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: border-color 0.3s ease;
}

.pdfmagics-box input[type="file"]:hover {
  border-color: #0056b3;
}

.pdfmagics-box button {
  margin-top: 20px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pdfmagics-box button:hover {
  background-color: #0056b3;
}

#result {
  margin-top: 25px;
  padding: 15px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #ccc;
}

#originalSize,
#compressedSize {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  margin: 10px 0;
}

#downloadBtn {
  margin-top: 15px;
  padding: 12px 25px;
  background-color: #28a745;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease;
}

#downloadBtn:hover {
  background-color: #218838;
}




/* Add these to your existing CSS */
.processing-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pdfmagics-download-btn {
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #28a745;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.pdfmagics-download-btn:hover {
    background-color: #218838;
}