#command-terminal-green-01 {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    color: #333333;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 24px 0;
    font-family: 'Fira Code', 'Cascadia Code', 'Menlo', monospace;
    font-size: 17px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-left: 3px solid #10b981;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  #command-terminal-green-01:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: #666666;
  }
  
  #command-terminal-green-01::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      rgba(0, 0, 0, 0.03) 0%, 
      rgba(0, 0, 0, 0.01) 25%, 
      rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
  }
  
  #command-terminal-green-01 .prompt {
    color: #10b981;
    margin-right: 10px;
    font-size: 18px;
    font-weight: bold;
  }
  
  #command-terminal-green-01 .command {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 18px;
  }
  
  #command-terminal-green-01 .copy-button {
    position: absolute;
    right: 14px;
    top: 14px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
  }
  
  #command-terminal-green-01 .copy-button:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
  }
  
  #command-terminal-green-01 .copy-button .svg-container {
    width: 22px;
    height: 22px;
  }
  
  #command-terminal-green-01 .comment {
    color: #666666;
    font-style: italic;
    margin-top: 10px;
    font-size: 16px;
    padding-left: 18px;
    border-left: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
  }
  
  #command-terminal-green-01:hover .comment {
    border-left-color: #10b981;
  }
  
  /* Typing cursor effect */
  #command-terminal-green-01 .command::after {
    content: '|';
    display: inline-block;
    color: #10b981;
    opacity: 0;
    animation: cmdTerminalGreenBlink 1s step-end infinite;
    margin-left: 2px;
  }
  
  #command-terminal-green-01:hover .command::after {
    opacity: 1;
  }
  
  @keyframes cmdTerminalGreenBlink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
  }
  
  /* Button press effect */
  #command-terminal-green-01 .copy-button:active {
    transform: scale(0.95);
  }
  
  /* Success indicator animation */
  @keyframes cmdTerminalGreenSuccessWave {
    0% { transform: scale(0); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
  }
  
  #command-terminal-green-01 .success-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
  }