 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background: #0f0f1a;
            color: #e0e0e0;
            padding: 20px;
            box-sizing: border-box;
            overflow-x: hidden;
        }
        .container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            background: rgba(45, 45, 45, 0.3);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            position: relative;
            z-index: 1;
            width: 90%;
            max-width: 1000px;
        }
        .input-section, .output-section {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        .label-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
        }
        label {
            font-weight: bold;
            color: #b0b0b0;
            margin: 10px 0;
        }
        textarea, input[type="text"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            font-size: 14px;
            resize: none;
            background-color: rgba(56, 56, 56, 0.4);
            color: #e0e0e0;
            transition: all 0.3s ease;
        }
        textarea:focus, input[type="text"]:focus {
            outline: none;
            border-color: #6a5acd;
            box-shadow: 0 0 0 2px rgba(106, 90, 205, 0.3);
        }
        textarea {
            height: 150px;
        }
        #jwtInput {
            height: 200px;
        }
        .output-container {
            position: relative;
        }
        #jwtPayloadOutput, #dataObjOutput {
            height: 150px;
            overflow: auto;
            background: rgba(30, 30, 30, 0.4);
            padding: 10px;
            border-radius: 5px;
            padding-right: 30px; /* Make room for the copy icon */
        }
        .copy-icon {
            position: absolute;
            top: 5px;
            right: 5px;
            cursor: pointer;
            background: rgba(106, 90, 205, 0.3);
            border-radius: 3px;
            padding: 5px;
            transition: all 0.3s ease;
        }
        .copy-icon:hover {
            background: rgba(106, 90, 205, 0.5);
        }
        button {
            padding: 12px 20px;
            background: linear-gradient(45deg, #6a5acd, #ff69b4);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            margin-top: 10px;
        }
        button:hover {
            background: linear-gradient(45deg, #5a4abD, #ef59a4);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(106, 90, 205, 0.4);
        }
        button:active {
            transform: translateY(0);
            box-shadow: none;
        }
        h2 {
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h3 {
            color: #b19cd9;
            margin-bottom: 10px;
        }
        pre {
            margin: 0;
            white-space: pre-wrap;
            word-wrap: break-word;
        }
        code {
            font-family: 'Courier New', Courier, monospace;
        }
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: rgba(30, 30, 30, 0.4);
        }
        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        /* Animated Blobs */
        .blob {
            position: fixed;
            width: 300px;
            height: 300px;
            mix-blend-mode: color-dodge;
            filter: blur(30px);
            border-radius: 50%;
            animation: move 25s infinite alternate;
            transition: 1s cubic-bezier(0.07, 0.8, 0.16, 1);
            opacity: 0.3;
        }
        .blob:hover {
            width: 320px;
            height: 320px;
            filter: blur(30px);
            box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.6);
        }
        .blob:nth-child(1) {
            top: -50px;
            left: -50px;
            background: linear-gradient(180deg, rgba(47, 184, 255, 0.42) 31.77%, #5c9df1 100%);
        }
        .blob:nth-child(2) {
            bottom: -50px;
            right: -50px;
            background: linear-gradient(180deg, rgba(255, 105, 180, 0.42) 31.77%, #ff1493 100%);
            animation-delay: -5s;
        }
        .blob:nth-child(3) {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(180deg, rgba(106, 90, 205, 0.42) 31.77%, #483d8b 100%);
            animation-delay: -10s;
        }
        .blob:nth-child(4) {
            top: -25px;
            right: 10%;
            background: linear-gradient(180deg, rgba(50, 205, 50, 0.42) 31.77%, #228b22 100%);
            animation-delay: -15s;
        }
        .blob:nth-child(5) {
            bottom: 5%;
            left: 10%;
            background: linear-gradient(180deg, rgba(255, 165, 0, 0.42) 31.77%, #ff8c00 100%);
            animation-delay: -20s;
        }
        @keyframes move {
            from {
                transform: translate(0, 0) rotate(-90deg);
                border-radius: 24% 76% 35% 65% / 27% 36% 64% 73%;
            }
            to {
                transform: translate(100px, 50px) rotate(-10deg);
                border-radius: 76% 24% 33% 67% / 68% 55% 45% 32%;
            }
        }

        /* Notyf custom styles */
        .notyf__toast {
            border-radius: 5px;
            box-shadow: 0 3px 7px rgba(0, 0, 0, 0.25);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .notyf__ripple {
            border-radius: 5px 5px 0 0;
        }
        .notyf__message {
            padding: 12px 15px;
        }

        /* Responsive adjustments */
        @media (min-width: 768px) {
            .container {
                flex-direction: row;
            }
            .input-section, .output-section {
                width: 48%;
            }
            textarea {
                height: 200px;
            }
            #jwtInput {
                height: 355px;
            }
            #jwtPayloadOutput, #dataObjOutput {
                height: 200px;
            }
        }

        @media (max-width: 767px) {
            body {
                padding: 10px;
            }
            .container {
                padding: 20px;
            }
            h2 {
                font-size: 1.5em;
            }
            textarea, input[type="text"] {
                font-size: 12px;
            }
            button {
                font-size: 14px;
                padding: 10px 15px;
            }
        }