<style>
/*        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            background-color: #f5f5f5;
            padding: 20px;
        }
*/        
        .code-wrapper {
            margin-bottom: 30px;
        }
        
        .filename {
            font-family: 'Courier New', monospace;
            font-size: 12px;
            color: #555;
            background-color: #d8d8d8;
            padding: 8px 15px;
            border-radius: 8px 8px 0 0;
            font-weight: 500;
        }
        
        .code-box {
            background-color: #e8e8e8;
            border-radius: 0 0 8px 8px;
            padding: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .code-box pre {
            font-family: 'Courier New', monospace;
            font-size: 14px;
            line-height: 1.5;
            white-space: pre-wrap;
            word-wrap: break-word;
            margin: 0;
            padding-right: 50px;
        }
        
        .code-with-lines {
            display: flex;
            gap: 10px;
        }
        
        .line-numbers {
            color: #888;
            text-align: right;
            user-select: none;
            flex-shrink: 0;
            min-width: 60px;
        }
        
        .code-content {
            flex: 1;
        }
        
        .copy-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 8px 12px;
            background-color: #333;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
            transition: background-color 0.3s;
        }
        
        .copy-btn:hover {
            background-color: #555;
        }
        
        .copy-btn.copied {
            background-color: #28a745;
        }
        
        .error {
            color: #d32f2f;
            padding: 10px;
            background-color: #ffebee;
            border-radius: 4px;
            margin-bottom: 20px;
        }

.taste {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 4px;
  background-color: #f0f0f0;
  border: 2px solid #333;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  transition: all 0.1s ease;
}

.taste:hover {
  background-color: #e0e0e0;
}

.taste:active {
  transform: scale(0.95);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.taste-3d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #e8e8e8;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 4px 0 #999, 0 6px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}

.taste-3d:hover {
  background-color: #f0f0f0;
}

.taste-3d:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 #999, 0 2px 4px rgba(0, 0, 0, 0.2);
}

.taste-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
  border: 1px solid #999;
  border-radius: 5px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.08s ease;
}

.taste-modern:hover {
  background: linear-gradient(to bottom, #ffffff, #f0f0f0);
}

.taste-modern:active {
  transform: translateY(2px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.kbd {
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 0.4375rem;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    margin-top: 0.25rem;
    padding: 0.1rem 0.4rem;
    box-shadow: 0 0 #d9d9d9, 0 0px #d9d9d9, 0 1px #d9d9d9, 0 2px #d9d9d9, 0 3px #d9d9d9, 0 4px #d9d9d9, 0 5px #d9d9d9, 2px 2.5px 4px #adb5bd, 0 -1px 2.5px #adb5bd;
    background-color: #fff;
    border-color: #e6e6e6;
    color: #343a40;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid #e6e6e6;
    border-radius: 0.25rem;
    display: inline-block;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-weight: 400;
    text-align: left;
    transform: translate3d(0, 0, 5px);
    transform-style: preserve-3d;
    transition: all 0.25s cubic-bezier(0.2, 1, 0.2, 1);
}

.command, .filename, .path {
    font-family: monospace;
    font-size: 1.0rem;
    padding: 2px;
    border-radius: 3px;
    background: #C0C0C0;
}
.filename {
    color: red;
}
.path {
    color: green;
}

    </style>
