#pass_encryption_tool textarea {
            width: 100%;
            height: 120px;
            padding: 10px;
            font-size: 16px;
            border-radius: 4px;
            border: 1px solid #ccc;
            resize: none;
        }

        #pass_encryption_tool .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;
        }

        #pass_encryption_tool .btn-generate:hover {
            background-color: #45a049;
        }

        #pass_encryption_tool table {
            width: 100%;
            margin-top: 20px;
            border-collapse: collapse;
        }

        #pass_encryption_tool table, #pass_encryption_tool th, #pass_encryption_tool td {
            border: 1px solid #ddd;
        }

        #pass_encryption_tool th, #pass_encryption_tool td {
            padding: 10px;
            text-align: left;
        }

        #pass_encryption_tool th {
            background-color: #f2f2f2;
        }

        #pass_encryption_tool .copy-btn {
            cursor: pointer;
            color: white;
            background-color: #28a745;
            border: none;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
        }

        #pass_encryption_tool .copy-btn:hover {
            background-color: #218838;
        }