.form-check {
            margin-bottom: 10px;
display:flex;
        }

        .btn-generate {
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }

        .btn-generate:hover {
            background-color: #45a049;
        }

        #password-output {
            text-align: center;
            font-size: 18px;
            margin-top: 20px;
            font-weight: bold;
            padding: 10px;
            background-color: #f7f7f7;
            border-radius: 4px;
        }

        .copy-btn {
            cursor: pointer;
            color: white;
            background-color: #28a745;
            border: none;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
        }

        .copy-btn:hover {
            background-color: #218838;
        }

        .slider-container {
            margin-top: 20px;
            text-align: center;
        }

        .slider-label {
            display: block;
            margin-bottom: 10px;
        }

        .slider {
            width: 100%;
        }

        /* Password Strength Bar Styles */
        .strength-bar {
            width: 100%;
            height: 10px;
            background-color: #e0e0e0;
            border-radius: 5px;
            margin-top: 10px;
            overflow: hidden;
            visibility: hidden; /* Initially hidden */
        }

        .strength-bar-inner {
            height: 100%;
            width: 0;
            background-color: red;
            transition: width 0.3s ease, background-color 0.3s ease;
        }

        .strength-text {
            margin-top: 5px;
            font-size: 14px;
            color: #666;
            text-align: center;
            visibility: hidden; /* Initially hidden */
        }