    .btn-translate {
      background: linear-gradient(45deg, var(--primary), var(--secondary));
      color: white;
      border: none;
      border-radius: 8px;
      padding: 12px 24px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(99, 102, 241, 0.25);
    }
    
    .btn-translate:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 10px rgba(99, 102, 241, 0.3);
    }
    
    .text-area {
      width: 100%;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 16px;
      min-height: 150px;
      background-color: white;
      font-size: 16px;
      transition: all 0.3s ease;
      resize: none;
    }
    
    .text-area:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
      outline: none;
    }
    
    .output-area {
      background-color: white;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 16px;
      min-height: 150px;
      font-size: 16px;
    }
    