        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
        }
                /* 텍스트 영역 기본 스타일 */
        textarea {
            resize: none;
            font-family: monospace;
            font-size: 14px;
            tab-size: 4;
            outline: none;
            /* 배경과 잘 섞이게 설정 */
            background-color: rgba(255, 255, 255, 0.9);
        }
        /* 코드 편집기 배경 이미지 */        
        /* NOTE: Placeholder image is used instead of a URL to prevent external resource issues. */
        #code-editor {
            background-image: url('./link.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            background-blend-mode: lighten;
        }
        /* 버튼 스타일 */
        .action-button {
            padding: 10px 16px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.2s;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            white-space: nowrap;
        }
        /* 모달 오버레이 스타일 */
        #preview-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75); /* 어두운 오버레이 */
            display: none; /* 초기에는 숨김 */
            justify-content: center;
            align-items: center;
            z-index: 50;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }
        /* 모달 콘텐츠 스타일 */
        .modal-content {
            width: 95%;
            height: 95%;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
        }
        /* 모달 내부 Iframe 스타일 */
        #modal-iframe {
            flex-grow: 1; /* 남은 공간을 iframe이 모두 차지 */
            border: none;
            width: 100%;
            height: 100%;
        }