        /* General Body Styles */
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            color: #333;
            margin: 0;
            padding: 0;
            box-sizing: border-box; /* Ensure all content fits within the container */
        }

        /* Outer Container - Ensures full-width with a max size */
        .outer-container {
            width: 100%;
            max-width: 1200px; /* Fixed width to ensure the design doesn’t shrink */
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }

        /* Inner Container - Keeps content aligned and with appropriate padding */
        .inner-container {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
            border: 2px solid #be0c6c;
            min-height: 500px; /* Ensures that the container has a fixed height */
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
        }

        /* Heading Styles */
        h1 {
            text-align: center;
            color: #be0c6c;
            margin-bottom: 20px;
        }

        /* URL Input Box - Prevents resizing of textarea */
        .url-input {
            width: 100%;
             width: 100%;
      height: 350px;
      margin-bottom: 10px;
      padding: 10px;
      font-size: 16px;
      border: 1px solid #be0c6c;
      border-radius: 4px;
      background-color: #f0f0f0;
      color: #be0c6c;
        }

        /* Button Layout */
        .buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        /* Button Styling */
        .button {
            background-color: #be0c6c;
            color: white;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            margin: 10px 5px;
            border-radius: 8px;
            flex-basis: 48%;
            text-align: center;
            transition: background-color 0.3s ease;
        }

        /* Button Hover Effect */
        .button:hover {
            background-color: #8c0a4f;
        }

        /* Notification Styling */
        .notification {
            background-color: #8c0a4f;
            color: white;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 8px;
            text-align: center;
            display: none;
        }

        /* Result Box Styling */
        .result-box {
            margin-top: 20px;
            padding: 15px;
            border: 1px solid #be0c6c;
            border-radius: 12px;
            background-color: #f7f7f7; /* Grey-white inner color */
            min-height: 100px;
            max-height: 400px;
            overflow-y: auto;
            white-space: pre-wrap;
            word-wrap: break-word;
            resize: none;
            width: 100%;
            box-sizing: border-box;
        }

        /* Result Box Heading */
        .result-box-heading {
            text-align: center;
            font-size: 18px;
            color: #be0c6c;
            margin-bottom: 10px;
        }

        /* Copy Button */
        .copy-button {
            background-color: #be0c6c;
            color: white;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            margin-top: 10px;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.3s ease;
        }

        /* Copy Button Hover Effect */
        .copy-button:hover {
            background-color: #8c0a4f;
        }