body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #89f7fe, #66a6ff);
    color: #333;
  }
  
  header {
    margin: 20px;
    text-align: center;
  }
  
  .container {
    width: 80%;
    max-width: 800px;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .upload-section {
    margin-bottom: 20px;
  }
  
  #uploadBtn {
    padding: 10px 20px;
    background: #66a6ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #uploadBtn:hover {
    background: #89f7fe;
  }
  
  .cropper-container img {
    max-width: 100%;
    margin-top: 20px;
  }
  
  .controls {
    margin-top: 20px;
  }
  
  .controls button {
    margin: 5px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #66a6ff;
    color: white;
    transition: 0.3s;
  }
  
  .controls button:hover {
    background: #89f7fe;
  }
  
  .controls button:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
  