 
    #image-resizer-container {
      max-width: 600px;
      margin: 50px auto;
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    #image-resizer-container h1 {
      color: #0073e6;
      text-align: center;
      margin-bottom: 20px;
      font-size: 2em;
    }

    #image-resizer-container form {
      display: flex;
      flex-direction: column;
    }

    .form-group {
      margin-bottom: 15px;
    }

    #image-resizer-container label {
      margin-bottom: 5px;
      color: #333;
      font-weight: bold;
    }

    #image-resizer-container input[type="file"],
    #image-resizer-container input[type="number"] {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
      background-color: #f9f9f9;
      color: #333;
      box-sizing: border-box;
    }

    #image-resizer-container button {
      padding: 10px;
      border: none;
      border-radius: 4px;
      background-color: #0073e6;
      color: #fff;
      font-size: 1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    #image-resizer-container button:hover {
      background-color: #005bb5;
    }

    #image-resizer-container .loader {
      width: 20px;
      height: 20px;
      background: url('https://ezgif.com/images/loading.svg') no-repeat;
      background-size: contain;
      display: none;
      margin-left: 10px;
    }

    #image-resizer-container #resizeButton.loading .loader {
      display: inline-block;
    }

    #image-resizer-container #resizedImageContainer {
      text-align: center;
      margin-top: 20px;
      margin-bottom: 20px;
    }

    #image-resizer-container #resizedImageContainer img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }

    #image-resizer-container #downloadButton {
      display: none;
      padding: 10px 20px;
      background-color: #28a745;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    #image-resizer-container #downloadButton:hover {
      background-color: #218838;
    }
 